Felipe Pessoto
Felipe Pessoto

Reputation: 6969

Is a good idea use Membership Provider with ASP.NET MVC

In ASP.NET MVC we dont have Login controls of webform, then still make sense use Membership Provider? It is a good practice?

Upvotes: 1

Views: 609

Answers (3)

Jeff Ogata
Jeff Ogata

Reputation: 57793

Yes, it still makes sense. Take a look a the default project created by Visual Studio (not the empty one), to see how it can be used with ASP.NET MVC and unit tests.

Upvotes: 0

Kev
Kev

Reputation: 119816

The Membership Provider is just a data store, use it as you wish. There just happen to be ASP.NET forms controls that also know how to use it.

Upvotes: 0

Chandu
Chandu

Reputation: 82913

Membership Provider is agnostic of Web Forms or any other classes where it will be used, so the least I can say is its not a bad idea.

Upvotes: 1

Related Questions