I have an upload control I created on an ASP.NET page, the submit button saves the file to the server, and at that point I would like to do some processing of the file.
I tried calling my "process function" in the page load event for the ASP.NET page that contains the upload control, but it executes before the submit event in the control.
I suppose that I could add the code to the upload control, but that defeats the purpose of the re-useable control.
Is there an event that I don't know about that I can use to launch the "processing function" after the file is saved?
TIA,
Justin
I tried calling my "process function" in the page load event for the ASP.NET page that contains the upload control, but it executes before the submit event in the control.
I suppose that I could add the code to the upload control, but that defeats the purpose of the re-useable control.
Is there an event that I don't know about that I can use to launch the "processing function" after the file is saved?
TIA,
Justin