Reputation: 13756
I thought it was years, but it is getting cleared within 1 hour.
Upvotes: 5
Views: 4578
Reputation: 281485
According to Explained: Forms Authentication in ASP.NET 2.0, "The default value is 30 minutes":
<system.web>
<authentication mode="Forms">
<forms loginUrl="Login.aspx"
protection="All"
timeout="30"
...
Upvotes: 11