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时处理的超时时间
  • 相关阅读:
    《就这》
    《我傻了》
    nginx配置本地https方法
    idea插件开发——Generate Resource SQL
    Java本地命令执行
    自定义类加载器和UrlClassLoader
    类加载器学习
    IO流学习
    Java
    static关键字
  • 原文地址:https://www.cnblogs.com/forward/p/969952.html
Copyright © 2011-2022 走看看