我只想问是否有办法增加特定页面的executionTimeOut?而不是整个应用程序?
<configuration>
<system.web>
<httpRuntime executionTimeout="90" maxRequestLength="4096" useFullyQualifiedRedirectUrl="false"
minFreeThreads="8" minLocalRequestFreeThreads="4" appRequestQueueLimit="100" />
</system.web>
</configuration>
Page.Server.ScriptTimeout = 90;
或
在配置文件中使用位置元素
<configuration>
<location path="UploadPage.aspx">
<system.web>
<httpRuntime executionTimeout="90" maxRequestLength="4096" />
</system.web>
</location>
</configuration>
请参阅仅在特定网页上增加请求超时和在每页级别的上增加ASP.Net超时
放入Web配置文件
<location path="Report.aspx">
<system.web>
<httpRuntime executionTimeout="3600" maxRequestLength="10240"/>
</system.web>
</location>