Tagged Questions

0
votes
1answer
54 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" …
1
vote
2answers
103 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 } …
0
votes
2answers
151 views

Assyncronous interaction using Sys WebForms PageRequestManager

Hi guys, I'm trying to display a panel to the user when an asynchronous call is made, but only if that happend from a specific call. using the normal "get control" script I have mine like: function …
1
vote
3answers
298 views

Check what control initiated AJAX Request

asp.net 2.0 / jQuery / AJAX <script type="text/javascript"> //updated to show proper method signature var prm = Sys.WebForms.PageRequestManager.getInstance(); prm.add_endRequest(hideMessage); …
0
votes
2answers
596 views

jQuery’s $() function always returns ‘undefined’ with AJAX

i've noticed that popup shows BEFORE text gets updated in the textbox, i guess js gets called before the page gets rendered ... that would explain the 'undefined' popup ... how do i make sure js gets …