uploading multiple files from client to server with asp.net
Posted
by Maestro1024
on Stack Overflow
See other posts from Stack Overflow
or by Maestro1024
Published on 2010-05-03T12:28:52Z
Indexed on
2010/05/03
12:38 UTC
Read the original article
Hit count: 357
uploading multiple files from client to server with asp.net
I have been looking at the asp.net upload control but that is for one file (unless someone knows a better way to do it).
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.fileupload.aspx
For what I want to do I don't even really need a browse. I know the files off of the client are at a certain location. Is it possible to create a collection of *HttpPostedFile*s and upload those?
http://msdn.microsoft.com/en-us/library/system.web.httppostedfile.aspx
I don't think it is possible but would be glad to be proven wrong. Is there a different asp.net method or control that will easily allow uploading multiple files from client to server?
© Stack Overflow or respective owner