views:

650

answers:

2

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?

+3  A: 

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

Daniel A. White
I used the FormsAuthentication method on a previous project but was wondering if there is another way to implement it.
lnetanel
Of course there is, by manually assigning a cookie.
Daniel A. White
A: 

here is a good explanation at DotNetBlogger.com

rockinthesixstring