Click here to Skip to main content
15,891,704 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to incress session time in asp.net with 3.5 frame work.
Posted

Increase the timeout in the Web.Config file:
XML
<system.web>
  <sessionState mode="InProc" timeout="30"></sessionState>
</system.web>


This would set the timeout as 30 minutes for your web application.
 
Share this answer
 
You can set it from different places so it's all depend on you. Follow below discussion:

http://forums.asp.net/t/1283350.aspx/1?How+to+increase+session+timeout+to+8+to+9hrs+[^]
 
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