I'm using the Multiple File upload sample found at http://www.asp.net/learn/videos/video-252.aspx. I modified it slightly to add the GUID onto the file name to ensure that no files with the same name are uploaded and a subdirectory based on a unique id that is returned earlier in my web application. BUT, I've found a problem with the sample, in that it loops thru and uploads a single file twice. I'm still too new to .NET to figure out why it's doing the upload twice and how to fix it. Here's my code... any suggestions on how to fix this?
Dim uploads As HttpFileCollection
uploads = HttpContext.Current.Request.Files
For i Go to the complete details ...