Reputation: 16292
Default session time out is 20 minute. If some one interact with web page just before session time out which has been idle for long time then what will happen. Session time out will receed I mean increase or session will time out after 20 minute.
I heard session time out is based on sliding expiration. so tell me due to sliding expiration session time out increase?
If increase then how much it will increase...is it next 20 minute?
Please discuss about the nature of session time out and how sliding time out works. How session time out increase due to sliding time out?
Upvotes: 1
Views: 9998
Reputation: 3510
if timeout = 120 mins
If a user visits his account then sliding expiration value will be reset and from that point, his session will be counted. If a user does not perform any activity within 2hrs then his session will be expired.
Upvotes: 0
Reputation: 2000
Sliding expiraton
will reset the expiration time each time when session is accessed.That is according to your question if the session is accessed in the middle then again the timeout is set to 20 minutes.
Upvotes: 1
Reputation: 5303
Sliding expiration means that each time the session is accessed it will reset the timer back to 20 minutes again.
Upvotes: 3