如何在 ASP.NET MVC 应用程序中设置一个控制器操作的请求超时
我想增加应用程序中特定控制器操作的请求超时。 我知道我可以在整个应用程序的 web.config 中执行此操作,但我宁愿仅在这一个操作上更改它。
Web.config 示例:
<system.web>
<httpRuntime executionTimeout="1000" />
</system.web>
我该怎么做?
I want to increase the request timeout for a specific controller action in my application. I know I can do it in the web.config for the entire application, but I'd rather change it on just this one action.
Web.config example:
<system.web>
<httpRuntime executionTimeout="1000" />
</system.web>
How do I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在控制器中以编程方式设置:-
将超时设置为 5 分钟,而不是默认的 110 秒(默认值有多奇怪?)
You can set this programmatically in the controller:-
Sets the timeout to 5 minutes instead of the default 110 seconds (what an odd default?)
也许最好在 web.config 而不是控制器中设置这些值。 对可配置选项进行硬编码被认为是有害的。
Probably it is better to set such values in web.config instead of controller. Hardcoding of configurable options is considered harmful.
我必须使用 .NET 4.5 添加“当前”:
I had to add "Current" using .NET 4.5: