vote up 3 vote down star
1

Hi Friends,

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 that user can select multiple files at one shot and then all files should be uploaded on one click.

Anyone of you have any idea?

Thanks in advance.

flag

4 Answers

vote up 3 vote down check

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.

link|flag
Erk. I keep forgetting it's not 1999 any more. :) – MusiGenesis Aug 3 at 13:31
Thanks Paul McLean. Thats a nice one. But I do need the filenames for other stuff such as storing thumbnails within database, saving the files with tempname as there are lots of files to be uploaded. Any idea? – IrfanRaza Aug 3 at 14:03
vote up 1 vote down

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

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.