ASP.NET逾時設定
作者:Eve Cole
更新時間:2009-06-30 16:56:39
1.IIS->[網站]->屬性-》連線逾時。預設為120秒
2.WEB.CONFIG 手工添加httpRuntime,如
<system.web>
<httpRuntime maxRequestLength="1000000" executionTimeout="2000" />
</system.web>
3.同步執行WEBSERVICE時,需設定TIMEOUT屬性,如
CompilerSvr.MyFavoritesService compiler=new FDN.DMS.Controls.CompilerSvr.MyFavoritesService();
compiler.Timeout =2000000; //毫秒