Click here to Skip to main content
16,019,764 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am running one web site and i am getting following error
Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
Posted

Based on the complete lack of usable information, my only response can be, "You're doing something wrong."
 
Share this answer
 
There is some operation in your code which is taking too long a time and thus timeout expiry.

Either debug to get that process that is taking too much of time to execute or post more details out here.
 
Share this answer
 
It seems some process is taking too much time to execute and cannot get completed within the default timeout period. Are you uploading a large file or something? By default the timeout is 2 minutes.
You may try increasing the timeout period in your web.config file and check if that works.
XML
<system.web>
  <httpRuntime executionTimeout="240" />
</system.web>


Here 240 is the no. of seconds an ASP.NET page is given before the operation is assumed to have failed and the page terminated. So I have changed the execution time-out to 4 minutes.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900