Uploading Mulitiple Files with HTMLInputFile Control

  • Thread starter Thread starter Corey Erkes
  • Start date Start date
C

Corey Erkes

I am using ASP.Net with C# as the code behind and am trying to upload
multiple files with the HTMLInputFile Control. I am able to browse, select
a file, and finally upload, but only one file at a time. Is there a way to
select multiple files to upload at one time using this control, or possibly
another control?? Any ideas on this would be greatly appreciated!!

Thank a lot!

Corey
 
Hi Corey,
The HTMLInputfile control allows uploading only one file at a time.. if you
want to upload multiple files at a time then you can
1) have multiple HTMLInputFile controls on a page and save the files
selected in each control on to the server
2) develop your own activex which can handles multiple file select and upload
3) go for any readily available third party controls
 
Eliyahu,

Thanks for the URL, that is exactly what I was looking for!

Much Appreciated,

Corey
 
Back
Top