Asp.net 页面请求超时 [英] Asp.net page request timeout

查看:43
本文介绍了Asp.net 页面请求超时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在处理页面请求超时的 asp.net 应用程序,我增加了 HttpRuntime executionTimeout =181 的超时时间,但仍然无法正常工作.请帮忙

I am working on asp.net application which had page request timeout, I increased the timeout in HttpRuntime executionTimeout =181 , but still its not working. Please help

推荐答案

你是怎么设置的?

常见的方式是写在web.config中:

The common way is to write it in the web.config:

<system.web>
    <httpRuntime executionTimeout="181">        
</system.web>

<compilation debug="false" />

Debug 必须设置为 false 否则超时将被忽略.

Debug must be set to false otherwise the timeout will be ignored.

不要忘记重新启动您的 AppPool 或 IIS.

Don't forget to restart your AppPool or IIS.

这篇关于Asp.net 页面请求超时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆