Ok, I did the following:
1. Changed the sub to use the FinalFileName
Code: Visual Basic.NET
Private Sub AJAXUploader1_FileUploaded(ByVal sender As Object, ByVal e As System.EventArgs) Handles AJAXUploader1.FileUploaded
'Get all the posted files
Dim files As EO.Web.AJAXPostedFile() = AJAXUploader1.PostedFiles
'Delete all posted files
Dim s As String = String.Empty
Dim file As EO.Web.AJAXPostedFile
For Each file In files
s += System.IO.Path.GetFileName(file.FinalFileName)
s += "<br />."
Next file
lblFiles.Text = s
End Sub 'AJAXUploader1_FileUploaded
However, I still don't get any file names written out.
I also set the FinalFileUpload in the AJAXUploader Control instead of in the Page_Load:
<eo:AJAXUploader runat="server" id="AJAXUploader1" Width="400px" TempFileLocation="~/eo_upload" MaxDataSize="40000"
ProgressDialogID="AJAXUploaderProgressDialog1" AutoPostBack="True" FinalFileLocation="d:\client websites\test\db\_filelibrary\test">
The upload works fine, lists the file, but it doesn't delete the temp files, and it doesn't move it to the finalfilelocation. I've tested permissions, given Everyone "write" permissions, etc. Do I need to call a specific action from the File_Uploaded sub to make it do the move, and delete the temporary files?
Thanks!