zoukankan      html  css  js  c++  java
  • Request Time Out. 0x80004005

     

    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:

    [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时处理的超时时间
  • 相关阅读:
    框架
    css样式表。作用是美化HTML网页.
    表单的制作
    表格的制作
    常用标签的制作
    标签的制作
    poj2104(K-th Number)
    Codeforces Round #359 (Div. 2) D. Kay and Snowflake
    Codeforces Round #359 (Div. 2) C. Robbers' watch
    HDU3308(LCIS) 线段树好题
  • 原文地址:https://www.cnblogs.com/forward/p/969952.html
Copyright © 2011-2022 走看看