C#中有多个文件上传的代码片段吗?
我已经在我的应用程序中使用 asp:fileUpload
进行文件上传,但是对于单个文件上传,现在我需要将其转换为多个文件上传
是否有任何代码可以在我现有的上传中添加,以便我只需附加?
I am already doing file upload in my application using asp:fileUpload
but for single file upload now I need to convert that to multiple file upload
Is there any code to add in my existing uploading so that I just append?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以轻松地在页面中动态创建 FileUpload 控件。因此,当用户选择“上传更多”链接时,将创建另一个 FileUpload 控件。
You can easily create FileUpload controls dynamically in your page. so when user select ,for example, "upload more" link, another FileUpload control will be created.
检查此链接:
http: //www.asp.net/general/videos/how-do-i-multiple-file-uploads-in-aspnet-2
它演示了如何通过添加新的 FileUpload 控件来添加多个文件。
查看第 15 分钟的视频即可查看最终结果。
底部有 C#/VB 的完整源代码下载。
Check this link:
http://www.asp.net/general/videos/how-do-i-multiple-file-uploads-in-aspnet-2
It shows how to add multiple files by adding new FileUpload controls.
Check video from minute 15 to see the final result.
At the bottom there is download of complete source code for C#/VB.