|
Thursday, December 18, 2008 |
| Sys.WebForms. PageRequestManager TimeoutException: The server request timed out. |
|
I got the exact message: Sys.WebForms.PageRequestManagerTimeoutException: The server request timed out.
There's a real simple fix to this annoying message that pops up. I was getting this in Visual Web Developer while stopped at breakpoints during debugging. Find your <ScriptManager code and modify it to include the AsyncPostBackTimeOut property. Then set the property value in seconds. I set mine to 4 minutes like so.
<asp:ScriptManager ID="MyScriptManager" runat="server" AsyncPostBackTimeout="240"> </asp:ScriptManager> |
jeremy at 4:27 PM |
(164) Comments |
Add a comment |
Permalink
|
|
|
|