I'm using server side validation for certain controls on an asp.net web form page, which also contains a RadAsyncUpload control.
When a user clicks save, I check to make sure these certain controls contain a value. If this fails, we stop the save process and display a message to the user.
During this process, any files to be uploaded are lost. I need to retain them.
In the load event following this post back, the RadAsyncUpload control still has the uploaded files, but after fully loading the page, they're gone.
I'm already using the Post back Triggers property and this save button just happens to be the post back trigger.
How can I capture these files and "re-load" them into the control?