Click here to Skip to main content
15,896,063 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have one ScriptManager in Master page. I have created one content page.

I ma using AsyncPostBackTime = 999999. It is working fine in IE but not working in Firefox.

VB
<asp:ScriptManager ID="ScriptManager1" runat="server" AsyncPostBackTimeout="111111111"  ScriptMode="Release"    EnablePartialRendering="true" LoadScriptsBeforeUI="true"
           />


I am getting below error:

Sys.WebForms.PageRequestManagerTimeoutException: Sys.WebForms.PageRequestManagerTimeoutException: The server request timed out.

If I remove the AsyncPostBackTime property the it is working fine in all the browser but it gives time out error.

Thanks
Posted

1 solution

The error itself describes everything.Sys.WebForms.PageRequestManagerTimeoutException is usually raised by the PageRequestManager class to return an error when an asynchronous postback has exceeded the specified time for processing(Default time is 90 seconds). Also you can refer to AsyncPostBackTimeout problem. Hope it helps.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900