设置ASP.NET页面的运行超时时间详细到单个页面及站点
程序员文章站
2024-02-25 17:13:33
全局超时时间 服务器上如果有多个网站,希望统一设置一下超时时间,则需要设置 machine.config 文件中的 executiontimeout 属性值。 machin...
全局超时时间
服务器上如果有多个网站,希望统一设置一下超时时间,则需要设置 machine.config 文件中的 executiontimeout 属性值。
machine.config 文件位于 %systemroot%\microsoft.net\framework\%versionnumber%\config\ 目录中。
例如:
复制代码 代码如下:
<httpruntime executiontimeout="90" maxrequestlength="4096" usefullyqualifiedredirecturl="false" minfreethreads="8" minlocalrequestfreethreads="4" apprequestqueuelimit="100" />
单个站点超时时间
web.config配置文件中设置http请求运行时间:
复制代码 代码如下:
<system.web>
<httpruntime maxrequestlength="102400" executiontimeout="720" />
</system.web>
这里设置的为720秒,前面的属性maxrequestlength一般用于用户上传文件限制大小!默认一般为4096 kb (4 mb)。
单个页面请求超时时间
对于单个页面,可以使用server.scripttimeout来设定超时。
复制代码 代码如下:
server.scripttimeout = 120;
注意:如果在web.config里设置了debug属性,例如:<compilation debug="true" targetframework="4.0">
此时,scripttimeout会被忽略。