Tagged Questions

3
votes
2answers
1k views

How to execute javascript once an update panel refreshes (Can't get Sys.WebForms.PageRequestManager.getInstance().add_endRequest(); to work)

I'm trying to run javascript once an update panel has refreshed. I've read a few places that you can use code similar to this: function codeToRun() { //Code Here } ...
1
vote
1answer
897 views

ScriptManager1.AsyncPostBackErrorMessage not showing error message

I've always used the following two bits of code (which use to work) to catch Ajax asyncPostBackErrors. <asp:ScriptManager ID="ScriptManager1" runat="server" ...