How to upload file in a different folder if we have multiple WebUpload controls, or how to modify the uploaded folder?
WebUpload first uploads the file into the ~/Uploads folder, during the uploading process file has a temporary name. After it is uploaded the temporary name is changed with the real file name. You could handle OnUploadFinishing event, then cancel this event, at this the file is uploaded but it is with the temporary name. Cancelling the event will prevent file renaming. Set the file name manually and move/copy it into the desired folder on the server.
Download Sample