I have a task and a half that i am sure i can do, just want to be pushed in the right direction:
i have a web page (asp.net c#), on it has a button that when clicked should launch the file dialog window, users must be able to select multiple files at once. Those files selected must then be placed in a structure (listview, array or something) An file that is over 10MB or is not an image file the user must see that file and be able to remove it.
once all the files have passed the requirement those files must now be stored to another location (another server) outside of the actual server that has the web application. The external location has a particular folder that the images must be saved to, if that folder does not exist it must be created and then the images be saved in a prescribed format eg( IMG + DateTimeStamp >> IMG_1202200512:45PM.jpg) to the folder. Any error during the upload to the external sever should prevent all remaining files from being saved to the external location and the user notified.
The client browser is IE9
I will be researching on how to do this but if someone has done this before feel free to post your solution.