Here is my html:
<ajax:asyncfileupload runat="server" onuploadedcomplete="AsyncFileUploaderUploadedComplete" />
Here is the code behind:
protected void AsyncFileUploaderUploadedComplete(object sender, AsyncFileUploadEventArgs e)
{
string file = "Upload complete!";
}
When I put a debug break on the string line and run the program, it never hits the debug line. Any idea why the onUploadedComplete is not working? Thanks for the help