当前位置: 编程技术>.net/c#/asp.net
ASP.NET的超时设置
来源: 互联网 发布时间:2014-08-30
本文导语: 1.IIS->[网站]->属性->连接超时。默认为120秒 2.WEB.CONFIG 手工添加httpRuntime,如 3.同步执行WEBSERVICE时,需要设置TIMEOUT属性,如 CompilerSvr.MyFavoritesService compiler=new FDN.DMS.Controls.CompilerSvr.MyFavoritesService(); compiler.Timeout =20000...
1.IIS->[网站]->属性->连接超时。默认为120秒
2.WEB.CONFIG 手工添加httpRuntime,如
3.同步执行WEBSERVICE时,需要设置TIMEOUT属性,如
CompilerSvr.MyFavoritesService compiler=new FDN.DMS.Controls.CompilerSvr.MyFavoritesService();
compiler.Timeout =2000000; //毫秒