1

I'm pretty new to ASP.NET and I need to build a "Remember Me" feature. I'm just interested if there is a built-in thing for this purpose? If there is than maybe someone can show me how to use it?

Stan
  • 25,744
  • 53
  • 164
  • 242
  • 3
    Have you tried creating MVC 3 Project, and run it? The thing you want to see is already in the default sample application. – Peyton Crow Aug 08 '11 at 23:31
  • 1
    Check [this post](http://stackoverflow.com/questions/5619791/implementing-remember-me-feature-in-asp-net-mvc) for a possible answer... – dizzwave Aug 08 '11 at 23:31

2 Answers2

1

The forms authentication provider has a boolean parameter for this. It's not implemented by default as far as I know in ASP.NET MVC.

http://msdn.microsoft.com/en-us/library/ka5ffkce.aspx

Travis
  • 10,444
  • 2
  • 28
  • 48
0

It's implemented by default. In visual studio 2010 with mvc 3 create a new web site with the internet template and the template will create a solution that includes an account controller with a logon action that has the remember me feature using the asp.net membership provider.

dtriana
  • 223
  • 3
  • 6