ASP.NET timeout settings
Author:Eve Cole
Update Time:2009-06-30 16:56:39
1.IIS->[Website]->Properties->Connection timeout. Default is 120 seconds
2.WEB.CONFIG Manually add httpRuntime, such as
<system.web>
<httpRuntime maxRequestLength="1000000" executionTimeout="2000" />
</system.web>
3. When executing WEBSERVICE synchronously, you need to set the TIMEOUT attribute, such as
CompilerSvr.MyFavoritesService compiler=new FDN.DMS.Controls.CompilerSvr.MyFavoritesService();
compiler.Timeout =2000000; //Milliseconds