【发布时间】:2012-02-27 16:06:53
【问题描述】:
根据MSDN关于system.web httpRuntime executionTimeout:
This time-out applies only if the debug attribute in the compilation element is
False. Therefore, if the debug attribute is True, you do not have to set this
attribute to a large value in order to avoid application shutdown while you are
debugging.
对于大多数调试来说,这是一个很棒的功能,因为它可以让请求在调试期间保持活动状态。如果我想自己调试超时错误怎么办?!无论我在任何地方设置什么超时属性,.NET 似乎都允许无限时间,所以我永远不会捕捉到要调试的异常!
【问题讨论】:
标签: asp.net debugging timeout visual-studio-debugging