asp.net 超时设置的方法介绍

发布时间:2020-03-01编辑:脚本学堂
如何设置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; //毫秒

经过以上三步的设置后,应该就可以解决asp.net的超时问题了,希望对大家有所帮助。