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?
Asked
Active
Viewed 1,841 times
1
-
3Have 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
-
1Check [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 Answers
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.

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