Multiple File Selection For Uploading in ASP.NET

后端 未结 3 1215
慢半拍i
慢半拍i 2020-12-06 02:43

There are several resources available on net to upload multiple files, but using multiple FileUpload controls. What I need to have multiple file selection dialog box so th

相关标签:
3条回答
  • 2020-12-06 02:50

    You should know that this is impossible using just the normal html and javascript code, due to security issues in the browsers.

    To do that you will need to use another external way such as:

    Flash -> SwfUpload, FancyUpload

    Applet

    ActiveX

    Silverlight

    Also check these questions:

    WebDev: What is the best way to do a multi-file upload?

    Best way to upload multiple files from a browser

    ASP.net - Multiple Upload with jQuery Multiple File Upload Plugin

    0 讨论(0)
  • 2020-12-06 02:59

    You may want to check out the Flajaxian controls - http://www.flajaxian.com/. They give you the ability to select multiple files at once for upload, and the control is free.

    0 讨论(0)
  • 2020-12-06 03:03

    I'm pretty sure you'd have to do this with a Java applet (or ActiveX control) that pops up a file open dialog and then assigns each of the file names selected to a hidden FileUpload HTML control.

    0 讨论(0)
提交回复
热议问题