Click here to Skip to main content
15,892,005 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can we fix session timeout for 30 minute in web.config. When i logged in, in my site & stays for some minute then i click on other page. it'll logged out.
Posted
Updated 14-Sep-12 3:20am
v3

Hello,

Modify Session out in Web.config.

<configuration>
<system.web>
<sessionstate timeout="20"/>
</system.web>
</configuration>

Thanks!!!
 
Share this answer
 
You've to set the 'timeout' attribute value.

For more details, look at this[^].
 
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