formsauthentication.setauthcookie默认过期?

时间:2009-09-18 22:28:59

标签: asp.net authentication

我认为这是几年,但它会在1小时内清除。

1 个答案:

答案 0 :(得分:11)

根据Explained: Forms Authentication in ASP.NET 2.0,“默认值为30分钟”:

<system.web>
  <authentication mode="Forms">
    <forms loginUrl="Login.aspx"
           protection="All"
           timeout="30"
           ...