Reputation: 6969
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
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
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
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