Server Error: HttpException (0x80004005): Request timed out.

Applies To

  • Server Error in '/' 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.]

Error

You get this error when displaying a Web page in your application:

Server Error: HttpException (0x80004005): Request timed out.

This typically occurs when a server-side code function or macro executes for a period of time longer than the maximum timeout period allowed for server-side code execution.

Steps to Reproduce

NA.

Resolution

Adjust the executionTimeout parameter in your application's web.config file.

<httpRuntime

maxRequestLength="10240"

executionTimeout="36000"

/>