Stan
Stan

Reputation: 26511

ASP.NET MVC3 has some built-in "remember me" log in thing?

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?

Upvotes: 1

Views: 1842

Answers (2)

dtriana
dtriana

Reputation: 233

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.

Upvotes: 0

Travis
Travis

Reputation: 10547

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

Upvotes: 1

Related Questions