|
I'm using a timer to drive my page updates at sometimes it will work for sometime without a problem, however, eventually I get this error.
A Runtime Error has occured.
Do you wish to debug?
Line: 604
Error: Sys.WebForms.PageRequestManager.TimeoutException: The server request timed out.
When I debug I get the following:-
The header of the files contains this;-
// Name: MicrosoftAjaxWebForms.debug.js // Assembly: System.Web.Extensions // Version: 3.5.0.0 // FileVersion: 3.5.21022.8 //!----------------------------------------------------------------------- //! Copyright (C) Microsoft Corporation. All rights reserved. //!----------------------------------------------------------------------- //! MicrosoftAjaxWebForms.js //! Microsoft AJAX ASP.NET WebForms Framework. // Partial Rendering Type.registerNamespace('Sys.WebForms');
and line 604 is throw error; line below.
if (error && !errorHandled) {
// DevDiv 89485: throw, don't alert()
throw error; }
Any thoughts please.
|