just trying to get a better understanding of the concepts involved with this so i can make better decisions on implementing the login based on the requirements i've been given.

in the case where the user checks the remember me box, how long does the asp login control's "remember me" remember for?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The default is set to 50 years.

From the MSDN page:

When the RememberMeSet property is true, the authentication cookie sent to the user's computer is set to expire in 50 years, making it a persistent cookie that will be used when the user next visits the Web site. Because the authentication cookie will be present on the user's computer, the user will be considered already authenticated and will not have to log in to the Web site again.

link|improve this answer
nice. so basically they'll have to login again after they cleared that cookie, either by logging out of the site or clearing broswer cookies etc. is there a way to override the default value? – towpse Sep 29 '11 at 14:00
1  
@towps - This post (forums.asp.net/t/1124851.aspx/1) seems to have an answer down at the bottom. – cdeszaq Sep 29 '11 at 14:04
there's a community post at the bottom of that MSDN page: Expiration date is not 50 years by default. Add the following lines to your Web.config to correct it. <authentication mode="Forms"> <forms timeout="26280000" /> </authentication> – towpse Sep 29 '11 at 14:05
@towps - Well, there's the same thing, just more concretely :) – cdeszaq Sep 29 '11 at 14:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.