Additional process after upload

  •  02-23-2009, 6:11 PM

    Additional process after upload

    Hi All,
     
    Is this possible?

        protected void InputFile_FileUploaded(object sender, UploaderEventArgs args)
        {
            //upload files into a temp folder
            //get path/filename of file from temp folder
            //insert some code-behind checking/validation using that path/filename
     
            //if true then
           //    copy file from temp folder to upload folder and use that path/filename
            //else
           //    delete file from temp folder then alert user of error
     }
     
    I'm not sure if this event is the correct one to use, would appreciate if someone could help me out.
     
    Thanks!
     
     
View Complete Thread