Unfortunately that isn't working for me. When I call "return false" in the OnPostback() function my
- Public Sub Uploader_FileUploaded(sender as object, args as UploaderEventArgs)
-
- If System.IO.File.Exists("\\server1\upload\"+args.FileName) = True Then
- System.IO.File.Delete("\\server1\upload\"+args.FileName)
- End If
-
- args.MoveTo("\\server1\upload\"+args.FileName)
- End Sub
function is NOT called, so the file is still in the "persisted.[guid].[filename].resx" format which is not what I want. I need the function to be called to move the file to the correct location.