views:

55

answers:

2

We need to upload multiple files using ASP.Net in one go. One option is to use the ASP.Net FileUpload control but it seems that it can't upload multiple files in one go. Any other option or ASP.Net FileUpload control can do multiple uploads in one go with some tuning?

A: 

No. One HTML upload element can upload exacly one file. To upload multiple files you can generate multiple upload controls on client side or use flash\silverlight.

gandjustas
Any exmpele or resource for flash\silver light?
Malik
http://silverlightfileupld.codeplex.com/
gandjustas
+5  A: 

Hi try this, these will help you

http://aspalliance.com/1221_CodeSnip_Uploading_Multiple_Files_At_Once.all

http://www.codeproject.com/KB/aspnet/multiple_file_upload.aspx

Pankaj Mishra
Thanks Pankaj for your reply. I was wondering do we have any option which works same as when we enable multi in FileUpload.
Malik