Ajax Async File Upload: On Upload Complete isn't triggering -


here html:

<ajax:asyncfileupload runat="server"  onuploadedcomplete="asyncfileuploaderuploadedcomplete" /> 

here code behind:

protected void asyncfileuploaderuploadedcomplete(object sender, asyncfileuploadeventargs e)     {        string file = "upload complete!";     } 

when put debug break on string line , run program, never hits debug line. idea why onuploadedcomplete not working? help

try modify html:

<ajax:asyncfileupload id="fileupload1" runat="server"  onuploadedcomplete="asyncfileuploaderuploadedcomplete" /> 

Comments

Popular posts from this blog

html - Sizing a high-res image (~8MB) to display entirely in a small div (circular, diameter 100px) -

java - IntelliJ - No such instance method -

identifier - Is it possible for an html5 document to have two ids? -