|
Rank: Member Groups: Member
Joined: 11/16/2007 Posts: 13
|
I just downloaded and purchased your Ajax Uploaded Key. After I upload my files, it stores them as a status, data and info file in the temp directory? How to I get access to my original uploaded files, where are they saved??? Please assist ASAP. I was hoping to deploy this today which was why I purchased instantly
Thanks
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, You will need to handle the server side FileUploaded event and to move the files to wherever you want them to be. You would also rename them to whatever you'd like when you move them. Here is an example about how to handle this event: http://www.essentialobjects.com/Demo/Default.aspx?path=AJAXUploader\_i8When you rename the file, you may need to use ClientFileName property to determine the final file name. Thanks
|
|
Rank: Member Groups: Member
Joined: 11/16/2007 Posts: 13
|
Are you saying, all I have to do is move and rename the *.data files?
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Yes. You will need to use TempFileName property to get the *.data file names (no need to search the directory by yourself) and move them to your desired location. Other files, such as .status file, will be automatically deleted by the uploader. So you don't need to worry about them.
|
|
Rank: Member Groups: Member
Joined: 11/16/2007 Posts: 13
|
Thanks
|
|