Click here to Skip to main content
15,867,686 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
in my asp.net application, 'log in' page expired in each 20 minute.. have any solution for it...
Posted
Comments
Brij 7-Oct-10 10:37am    
Are you talking about Session expired?

You can change the forms authentication timeout as outlined in this article :)
 
Share this answer
 
Comments
Dalek Dave 7-Oct-10 11:00am    
Good Call
Session timeout is default to 20 min in ASP.NET.
 
Share this answer
 
Comments
raju melveetilpurayil 7-Oct-10 18:49pm    
right ;)
In your web.config file modify SessionState timeout value .


<!--
    Session Timeout To be set to 120 min of inactivity.
    -->
        <sessionState mode="InProc" timeout="120"/>
 
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