Hi all, Iam using file upload control in my application where user can upload single as well as multiple files & make sure file is uploaded with unique name. Also once uploaded to be able to view files in a dropdown & have a download button so selecting any file from the dropdown,user can download the file as well. Thanks In Advance! Steve (212) 736-3333
Please define what type of problem you are facing i.e. it is something with file uploader or anything else
You need a dummy exame of this or what ?? I can make one for you but if you want real professional solution you can contact me on PM about deal
If you are having issues creating a new unique name for the file - either use an incrementor - database driven, or Guid.New() + extensionName as the filename. If you are having issues rendering the uploaded files in a dropdown - just have server-side code read the files in your specific folder, iterate over them, and manually write out the <option> html markup... or bind it to a dropdown control if .net