ASP.net application will throw HttpTimeOutException, if it’s request executing more than 100 seconds.
If you need execution time more than that, set following setting in web.config file.
<system.web>
<!-- in seconds-->
<httpRuntime executionTimeout="300"/>
</system.web>
No comments:
Post a Comment