i have long process in ajax that make problem
i added asyncpostbacktimeout=600 to the script manager
<asp:ScriptManager AsyncPostBackTimeOut="600" runat="server" ID="SmPage" EnablePageMethods="true" />
in the local host its working great,
but when i tested it on the server it still have the some problem
any advise ?
Thanks
You might have to increase
executionTimeoutin web.config otherwise the request itself is timing out.Have a look at executionTimeout at msdn. It explains the difference between Debug=True/False and this is probably causing the difference between localhost and production.
Add
executionTimeouttoconfiguration/system.web/httpRuntimeinWeb.Configand let me know if it works: