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:
I am facing Session Timeout issue in asp.net, I am using idleTimeout jquery plugin.
But this pluging is not extending session for popup and logging off. This pluging is working fine for main pages.
Thanks in Advance.
Posted

I would recommend to define at web.config level as:

XML
<system.web> 
 <sessionState timeout="20" />
<system.web>
 
Share this answer
 
You can do at web server IIS level as:

You can get to the setting by: Open IIS | Properties on Web Site | ASP.NET tab | Edit Configuration... (or Edit Global Configuration to change for more than one site) | State Management tab. 

Here you will see a textfield with a label that says "Session timeout (minutes) with a default value of 20 minutes. 
 
Share this answer
 
Hi there..

Try visiting this link[^]..

This will help you..
All the best..
 
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