Hi,
Here's what I have:
My 3.5 app uses Forms Authentication.
I create an authentication cookie (ticket) with an expiration date of one day. The cookie's IsPersistent is set to True.
I do not use any session variables.
Session timeout is the default 20 minutes.
Here's the problem:
When the session times out in 20 minutes, the user is redirected to the logon page even though the authentication cookie has not expired.
Why does this happen? I thought the session and the cookie were independent of each other.
Thanks in advance.
...
Go to the complete details ...