What is the best way to implement 'remember me' functionality on an ASP.NET web site?

Should I use custom cookies or is there a simpler method?

link|improve this question

73% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Are you using the built in Authenication services provided by ASP.NET? If so, its pretty easy.

link|improve this answer
I used the FormsAuthentication method on a previous project but was wondering if there is another way to implement it. – lnetanel Sep 29 '09 at 15:14
Of course there is, by manually assigning a cookie. – Daniel A. White Sep 29 '09 at 16:17
feedback

here is a good explanation at DotNetBlogger.com

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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