C# .NET - Sys webforms Page request manager Timeout exception

Asked By Sneha Deore on 20-Jul-09 06:14 AM
Hi ,
I hv done following Stuff after i Encounter this Problem:
1.Change in WebConfig :

<sessionState
            mode="InProc"
            stateConnectionString="tcpip=127.0.0.1:42424"
           sqlConnectionString="Data Source=XYZ;User ID=sa Password=sa"
            cookieless="false"
            timeout="30"
    />
2.<httpRuntime  maxRequestLength="1048576" executionTimeout="36000" />
3. Default Web Site > Properties > Home Directory > Application Settings > Configuration > Options.

But till i m getting The above error..Plz Help...
Santhosh N replied to Sneha Deore on 20-Jul-09 07:12 AM

check this one for the possible solutions and all configurations which you can try out..

http://forums.asp.net/t/1133098.aspx

RE

Ravenet Rasaiyah replied to Sneha Deore on 20-Jul-09 09:45 AM
Hi

Actually this error  not solve by your above operation. Because of this error related with AJAX. that means you need do like this way. i hope you are using AJAX, so you need set the post back timeout in your  ScriptManager., like followings,.


<asp:ScriptManager ID="ScriptManager1" runat="server"

AsyncPostBackTimeOut="600" >

</asp:ScriptManager>

AsyncPostBackTimeOut default timeout is 90 seconds. now try and see it will work fine and great.

Thank you
http://www.codegain.com