Server Error in '/Advantech20' Application.
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:
|
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时处理的超时时间