1. 程式人生 > >ASP.NET超時設定

ASP.NET超時設定

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; //毫秒