vote up 1 vote down star
1

This is perhaps related to this question, but I have slightly more information.

I recently updated an ASP.Net application to .NET 3.5 after coding a few new pieces with Linq. Now my pages intermittently stop firing event handlers. I have it narrowed down to pages with Ajax on them, and I assume it's either the ScriptManager or the AjaxControlToolkit registration that is precipitating the problem.

The really screwy part is that pages seem to work fine about 2/3s of the time, and the controls lose their event handlers only 1/3 of the time. I wondered about some type of error occurring and the page not rendering correctly, but I cannot find evidence of this.

flag

0% accept rate
Are you working with Update Panels on these AJAX pages? – RSolberg Apr 24 at 16:45
Some of them, yes, but not all. – nathaniel Apr 24 at 19:42

4 Answers

vote up 0 vote down

i have only used Telerik Ajax controls so far, and my observation is if an exception occours in a Ajax enabled control, nothing happens. No exception report, no action. nothing.

Maybe you should test you app without ajax to identify any problem spots

link|flag
No errors -- if i remove the AJAX pieces everything works appropriately. And like I mentioned, about 66% of the time it works appropriately AS IS, with the Ajax libraries still in the markup. – nathaniel Apr 24 at 16:20
vote up 0 vote down

My initial thought would be that something is happening where the javascript is erroring out (un-caught) and aborting the async postback.

If you can get this to happen in a development environment, you might want to try error handling the window.onerror event and throwing some alert boxes up. It might help to see where possible errors occur.

link|flag
vote up 0 vote down

have you tried:

ScriptManager.GetCurrent(this).RegisterAsyncPostBackControl(yourButton);

link|flag
vote up 0 vote down

DaDa thanks a lot. Your solution solved erratic eventsfor my rad tree. You rock

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.