如何为 asp.net mvc 应用程序中的一个控制器操作设置请求超时

我希望增加应用程序中特定控制器操作的请求超时时间。我知道我可以在 web.config 中为整个应用程序做这件事,但是我宁愿只在这一个操作上更改它。

Config 示例:

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

我该怎么做?

131076 次浏览

You can set this programmatically in the controller:-

HttpContext.Current.Server.ScriptTimeout = 300;

Sets the timeout to 5 minutes instead of the default 110 seconds (what an odd default?)

<location path="ControllerName/ActionName">
<system.web>
<httpRuntime executionTimeout="1000"/>
</system.web>
</location>

Probably it is better to set such values in web.config instead of controller. Hardcoding of configurable options is considered harmful.

I had to add "Current" using .NET 4.5:

HttpContext.Current.Server.ScriptTimeout = 300;