SWFUpload multiple files server-side handling
Posted
by Chau
on Stack Overflow
See other posts from Stack Overflow
or by Chau
Published on 2010-03-18T11:50:11Z
Indexed on
2010/03/18
20:41 UTC
Read the original article
Hit count: 653
I need the user to be able to upload multiple files to my server, thus I am using the SWFUpload
utility. SWFUpload sends the files one by one, and I need to store them all in the same temporary directory. My ASP.NET
handler recieves the files one by one and I can store the file appropriately.
My problem is: How do I know which files belong to the same upload? Rephrased, how do I connect the files in my handler?
© Stack Overflow or respective owner