|
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.
Fix this by adding the above to web.config
<system.web>
<httpRuntime maxRequestLength="204800" executionTimeout="86400" />
</system.web>
|
|