我在asp.net应用程序有页面请求超时,我增加了超时在HttpRuntime executionTimeout =181,但仍然不工作。请帮助
你是怎么设置的?
通常的方法是在web.config中写:
<system.web>
<httpRuntime executionTimeout="181">
</system.web>
<compilation debug="false" />
Debug必须设置为false,否则超时将被忽略。
别忘了重启你的appool或IIS。
您是否在调试/逐步执行时看到站点停止?如果是这样,您可以将IIS中的应用程序池的ping设置为禁用(即ping Enabled = False),这将允许您无限期地暂停/调试。