Forms authorization cookie always set to expire in 2055?

  • Thread starter Thread starter Amil
  • Start date Start date
A

Amil

I'm using Forms authorization. In my <forms> section I have timeout="30",
but when I examine the cookie, it shows it expiring in 2055? Why?

<authentication mode="Forms">
<forms
loginUrl="/login.aspx"
protection="All"
timeout="30"
path="/">
<credentials passwordFormat="Clear">
<user name="guest" password="xxxxxxx" />
</credentials>
</forms>
</authentication>
 
So, what good is setting the "timeout" value in the <form> section? Maybe
you didn't read my post accurately.
 
Ahh...yes...now I see. I set the persistant parameter to false and now it
works. Thanks.

Amil
 
Back
Top