如何允许用户在 ASP.NET 中通过一次上传操作上传多个文件?

发布于 2024-10-20 17:05:18 字数 38 浏览 1 评论 0原文

我想允许用户通过一次上传操作上传多个文件。最简单的方法是什么?

I want to allow a user to upload several files with one upload action. What is the simplest way to do this?

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

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

发布评论

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

评论(3

芯好空 2024-10-27 17:05:18

从 Filedialoge 中获取选定的文件:

foreach (String file in openFileDialog1.FileNames) 

并在循环中上传它们

阅读 示例

Get the selected Files from your Filedialoge:

foreach (String file in openFileDialog1.FileNames) 

and Upload them in a the Loop

Read the Example

划一舟意中人 2024-10-27 17:05:18

javascript 中的C# 代码

public ActionResult Create( HttpPostedFileBase[] FileUpload)
{
//upload here
}

您必须将动态文件上传器添加到表单中。但必须给它们指定与 FileUpload 相同的名称。当您发布表单时,它会发送所有 FileUploader。

或者您可以查看此 ASPNET-MVC-ModelBinding-多个文件上传到数组

C# code

public ActionResult Create( HttpPostedFileBase[] FileUpload)
{
//upload here
}

in javascript you must add dynamic file uploaders to form. but tou must give them same name as FileUpload. and when you will post form it will send all FileUploaders.

or you can look at this ASPNET-MVC-ModelBinding-Multiple-File-Uploads-to-an-Array

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