安全上传/下载文件,winforms c# 和 asp.net

发布于 2024-08-28 01:01:54 字数 211 浏览 8 评论 0原文

从 winforms 应用程序中,我需要上传&使用 http/https 将文件下载到 asp.net Web 服务器。

  • 一次只需要发送/接收一个文件
  • 不能使用ftp,必须使用http/https
  • 需要进度条
  • 上传&下载必须经过用户名/密码验证 有

没有简单的方法可以做到这一点?

From a winforms application, I need to upload & download files to an asp.net web server using http/https.

  • only need to send/receive one file at a time
  • cannot use ftp, must use http/https
  • need progress bar
  • upload & download must be username/password authenticated

Is there an easy way to do this?

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

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

发布评论

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

评论(1

烟燃烟灭 2024-09-04 01:01:54

WebClient 类应该能够做你需要做的一切。使用 UploadFileAsyncUploadDataAsync 进行上传(及其对应的下载),对用户名和密码进行常规 HTTP 身份验证(请参阅Credentials属性)和用于跟踪进度栏进度的 UploadProgressChanged 事件。

The WebClient class should be able to do everything you need to do. Use either UploadFileAsync Or UploadDataAsync for the upload (and their counterparts for the download), normal HTTP authentication for the username and password (see the Credentials property) and the UploadProgressChanged event for tracking progress for your progress bar.

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