I found this definition of timeout from this site
This is the amount of time (in integer minutes) that the cookie has until it expires. The default value for this attribute is 30 (thus expiring the cookie in 30 minutes).
The value specified is a sliding value, meaning that the cookie will expire n minutes from the time the last request was received.
What does the last request mean. Does mean the last time there was any activity in the site? Let's say that the timeout is set to 5 minutes. I understand that if the user leaves his desk, and comes back 5 minutes later, he will be redirected to login screen. But what if he is working for more than 5 minutes? Will it cut him off 5 minutes later?
This is the amount of time (in integer minutes) that the cookie has until it expires. The default value for this attribute is 30 (thus expiring the cookie in 30 minutes).
The value specified is a sliding value, meaning that the cookie will expire n minutes from the time the last request was received.
What does the last request mean. Does mean the last time there was any activity in the site? Let's say that the timeout is set to 5 minutes. I understand that if the user leaves his desk, and comes back 5 minutes later, he will be redirected to login screen. But what if he is working for more than 5 minutes? Will it cut him off 5 minutes later?