gpt4 book ai didi

ASP.NET MVC 和 httpRuntime 执行超时

转载 作者:行者123 更新时间:2023-12-03 07:04:16 26 4
gpt4 key购买 nike

我想增加 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 和上传操作。

最佳答案

您可以在 标记的路径属性中包含整个 MVC 路径( Controller 和操作)。像这样的东西应该有效:

<location path="Images/Upload">
<system.web>
<httpRuntime executionTimeout="600" />
</system.web>
</location>

关于ASP.NET MVC 和 httpRuntime 执行超时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/492346/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com