I have ASP.Net Ajax AsyncFileUpload in one of my pages. All the events including OnUploadedComplete, are firing fine after page load and after page is posted back using a button or something those events are not firing.
This is my form tag
<form id="form1" runat="server" enctype="multipart/form-data">
This is my AsyncFileUpload tag
<ajaxToolkit:AsyncFileUpload runat="server" ID="FileUpload" ClientIDMode="Static" OnClientUploadStarted="onClientUploadStarted" OnClientUploadComplete="onClientUploadCompleted" OnClientUploadError="onClientUploadError"
Width="100%" UploaderStyle="Traditional" OnUploadedComplete="ProcessUpload" UploadingBackColor="#FFFFFF"
ErrorBackColor="White" CompleteBackColor="White" CssClass="upload" Style="display: none" />
and I have used a master page in my project.This is weird and any help would be greatly appreciated.
Edited
In the browser console there is an error saying,
Uncaught ReferenceError: partialLoad is not defined