Often during debug of server-side VB.NET/C# code that is executed inside of ASP.NET partial postack (UpdatePanel, other controls with AJAX behaviors) I am getting this client-side error:
At this point I do not care about client-side (and at runtime this is not happening). It's just a major annoyance during debug - is there a way to prevent it?
This happens when you have an ASP ScriptManager for AJAX processing. That control has a default Async PostBack timeout of 90 seconds, after which it will throw this exception.
The solution is rather simple: Add an ASP tag during debug to extend the timeout for as long as a debug session might take you:
The above will let me run a debug session for one hour before throwing that exception. Don't forget to remove that tag for your production releases, or a hung loop etc, will never time out.
Jeff