如何在 C# 中使用 post 请求上传图像/文件?
C#提供了提交post请求的功能,但是MSDN上没有关于上传图像/文件的内容。 我想在不使用原始标头的情况下执行此操作。
相关问题
C# provides functionality to submit a post request, but there is nothing about uploading an image/file on MSDN. I'd like to do this without using raw headers.
Related questions
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以轻松使用
WebClient
类。 它有一个UploadFile
方法:You can use
WebClient
class easily. It has anUploadFile
method:我的 ASP.NET 上传常见问题解答有一篇关于此问题的文章,其中包含示例代码: 通过 HttpWebRequest/WebClient 使用 RFC 1867 POST 请求上传文件。 该代码不会将文件加载到内存中,支持多个文件,并支持表单值、设置凭据和cookie等。
My ASP.NET Upload FAQ has an article on this, with example code: Upload files using an RFC 1867 POST request with HttpWebRequest/WebClient. This code doesn't load files into memory, supports multiple files, and supports form values, setting credentials and cookies, etc.