【发布时间】:2010-10-04 06:56:12
【问题描述】:
我想为 ASP.NET MVC 应用程序的一个小节增加 httpRuntime executionTimeout。
在常规的 Web 应用程序中,您可以使用:
<configuration>
<location path="UploadPage.aspx">
<httpRuntime executionTimeout="600"/>
</location>
</configuration>
但是 ASP.NET MVC 中确实没有“文件夹”的概念,那么我将如何去做呢?
假设 ASP.NET MVC 路径是 /Images/Upload,带有 ImagesController 和 Upload Action。
【问题讨论】:
标签: asp.net asp.net-mvc configuration timeout httpruntime