Click here to Skip to main content
15,892,643 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have a web page, and I need a multi-file upload. In windows forms, it's super easy, just set the file upload control to allow multiple files. But in a web form, I'm unsure how to do this. There's no property like that, and after a bit of googling, it looks like it won't be easy. I have to stay within the constraints of .NET (no flash, javascript, etc.). Thanks to anyone who can help.
Posted
Comments
bbirajdar 17-Mar-13 2:48am    
The asp.net fileUpload control does not support multiple file upload. You need to use flash uploader or jQuery plugin http://www.aspdotnet-suresh.com/2012/12/aspnet-upload-multiple-files-using.html

1 solution

I have to stay within the constraints of .NET (no flash, javascript, etc.).
If even Javascript is outside your limits, then what you seek is not possible directly.

For strick .NET, you can define multiple fileupload controls to upload instead of uploading multiple files from one control in one go.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900