Rank: Newbie Groups: Member
Joined: 2/28/2008 Posts: 4
|
Hi,
I am using the AJAXUploader control, it moves files to the temp folder ok, but nothing appears in the final file location, both folders have full control the everyone, i am a bit stuck!
<eo:AJAXUploader ID="AJAXUploader1" runat="server" AllowedExtension=".mdb" EnableKeyboardNavigation="True" FinalFileLocation="d:\upload_test\final" ProgressBarSkin="Windows_Vista" ProgressDialogID="AJAXUploaderProgressDialog2" TempFileLocation="d:\upload_test\temp" Width="600px" MaxFileCount="1">
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
The files are moved only when the page is posted back to the server (when FileUploaded event is fired). Can you try to handle that event and then see if the files are moved to FinalFileLocation by the time your handler is hit?
Thanks
|