Hi,
There are two ways to access the uploaded files:
1. Access the temp file directory. This way you would see the long temp files you are seeing. The uploader also tells you the original file name:
http://www.essentialobjects.com/ViewDoc.aspx?t=EO.Web.AJAXPostedFile.ClientFileName.htmlYou would then be responsible to copy/move/rename these temp files to wherever you want based on the information provided;
2. Let the AJAX Uploader to automatically copy and rename the temp files for you. To use this feature, you would also set the uploader's FinalFileLocation;
Option 2 is easier to use but less flexible. Option 1 is more flexible but requires some additional coding. For example, some people wish to save file directly to the database, in that case Option 2 would not be necessary because in order to save the file to DB, all you need is the file name and file content, both are provided in option 1, while option 2 unnecessary made an additional copy of the file.
Thanks