如何在 C# 中使用 post 请求上传图像/文件?

发布于 2024-07-17 13:39:36 字数 247 浏览 2 评论 0原文

C#提供了提交post请求的功能,但是MSDN上没有关于上传图像/文件的内容。 我想在不使用原始标头的情况下执行此操作。

相关问题

使用 HTTPWebrequest 上传文件 (multipart/form-data)

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

Upload files with HTTPWebrequest (multipart/form-data)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浮华 2024-07-24 13:39:36

您可以轻松使用 WebClient 类。 它有一个 UploadFile 方法:

var client = new WebClient();
client.UploadFile("http://server/upload.aspx", @"C:\file.jpg");

You can use WebClient class easily. It has an UploadFile method:

var client = new WebClient();
client.UploadFile("http://server/upload.aspx", @"C:\file.jpg");
土豪我们做朋友吧 2024-07-24 13:39:36

我的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文