如何允许用户在 ASP.NET 中通过一次上传操作上传多个文件?
我想允许用户通过一次上传操作上传多个文件。最简单的方法是什么?
I want to allow a user to upload several files with one upload action. What is the simplest way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
http://www.codeproject.com/KB/aspnet/FlashUpload.aspx
http://geekswithblogs.net/QuandaryPhase /archive/2009/10/02/asp.net-multiple-file-uploading.aspx
http://www.codeproject.com/KB/aspnet/FlashUpload.aspx
http://geekswithblogs.net/QuandaryPhase/archive/2009/10/02/asp.net-multiple-file-uploading.aspx
从 Filedialoge 中获取选定的文件:
并在循环中上传它们
阅读 示例
Get the selected Files from your Filedialoge:
and Upload them in a the Loop
Read the Example
javascript 中的C# 代码
您必须将动态文件上传器添加到表单中。但必须给它们指定与 FileUpload 相同的名称。当您发布表单时,它会发送所有 FileUploader。
或者您可以查看此 ASPNET-MVC-ModelBinding-多个文件上传到数组
C# code
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