Click here to Skip to main content
15,896,111 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
SQL
timeout expired. the timeout period elapsed prior to completion of the operation or the server is not responding

This error while taking a report in telerik after 5 minutes.
Can u just tell me where is this timeout setted?
Posted

1 solution

you can set this in web.config
C#
<httpruntime executiontimeout="number(in seconds)" />


XML
<configuration>
    <system.web>
        <httpruntime maxrequestlength="32768" executiontimeout="600" />
    </system.web>
</configuration>
 
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