is there a solution that allows to select multiple files from the file open dialog box and upload them from ASP.NET web page? I have gone through previous posts related to t
It's possible with HTML5 which gives the standard input tag for files an additional attribute: multiple.
When implemented, it looks like this:
<input type="file" id="input" multiple="true" />
...and give you exactly what you're looking for.
If you toss in some vanilla Javascript, you can even stream the upload of the file(s).
http://blog.new-bamboo.co.uk/2010/7/30/html5-powered-ajax-file-uploads
The 2 downsides are:
I hope this helps or at least puts you on the right path.
Maybe jQuery can help you out, for example http://docs.jquery.com/Tutorials:Multiple_File_Upload_Magic
If you Google there are allot of jQuery uploaders, not sure if they use flash, but you can try it out
edit: http://valums.com/ajax-upload this one allowed multiple file uploads