I have an ASP.NET page with several static methods decorated with [WebMethod] in the code-beside, which in turn are called from javascript using PageMethods.MyMethodName(myParameter, myOnCompleteHandler, myOnErrorHander);.
One of the methods is called multiple times, and the runtime can be long due to the volume of calls. Currently, the method is functioning correctly, but calls that take >5 minutes to complete are timing out. I would like to increase that span to 10 minutes.
I have tried:
ScriptManager.AsyncPostBackTimeout = 600;Server.ScriptTimeout = 600;this.Page.AsyncTimeout = new TimeSpan(0,10,0);Sys.Net.WebRequestManager.set_defaultTimeout(600000);in javascript