Request timed out.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Web.HttpException: Request timed out.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:

[HttpException (0x80004005): Request timed out.]
            


Version Information: Microsoft .NET Framework Version:2.0.50727.832; ASP.NET Version:2.0.50727.832

如果遇到这种错误,一般可以用一下方式来解决
在web.config中做如下设置
<configuration>
<system.web>
<httpRuntime executionTimeout="3600"  />
</system.web>
</configuration>
这个红色的表示页面request时处理的超时时间

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-24
  • 2022-01-07
  • 2021-08-01
  • 2021-10-20
  • 2021-06-02
猜你喜欢
  • 2021-06-24
  • 2022-12-23
  • 2021-11-20
  • 2021-11-20
相关资源
相似解决方案