views:

101

answers:

1

I thought it was years, but it is getting cleared within 1 hour.

+3  A: 

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"
           ...
RichieHindle