| Author: jananeekar 03 Nov 2009 | Member Level: Silver | Rating: Points: 0 |
Modify your web.config file shown as below....this will work
<system.web> <sessionState timeout="20"></sessionState> </system.web> change timeout to say 40 mins... <system.web> <sessionState timeout="40"></sessionState> </system.web>
|
| Author: rohith 03 Nov 2009 | Member Level: Bronze | Rating:  Points: 2 |
can u give other than this solution.....
|
| Author: ShashiKant Gupta 04 Nov 2009 | Member Level: Gold | Rating:  Points: 2 |
you can use a update panel with timer inside it
after a particular time period, send some small request to server through timer control, this will make the session active and you can control when you can kill the session and untill when you want it alive, through application.
if you want a static time increase then web.config setting is the best and simplest option.
|