ASP.NET 2.0中预设的cookie
程序员文章站
2023-11-30 09:00:28
今早在老外的blog上看到这个说法,不妨留意一下: 如果你在asp.net 2.0中使用formsauthentication,并且将cookie设置为持久状态,那么...
今早在老外的blog上看到这个说法,不妨留意一下:
如果你在asp.net 2.0中使用formsauthentication,并且将cookie设置为持久状态,那么其持续时间默认是30分钟的,而不是asp.net 1.1中的50年,因为50年的话太不安全了,你的计算机会被人卖掉的。如果要更改的话,可以使用timeout属性更改
<authentication mode="forms">
<form loginurl="login.aspx" timeout="3600"/>
</authentication>
如果不更改timeout属性,那么当你使用asp.net 2.0的login控件时,即使用户选了remember me,那么30分钟过后,用户还是必须要登陆的