How to deploy custom membership system in asp.net mvc
2 answers
You can use the built-in membership provider
http://dotnetaddict.dotnetdevelopersjournal.com/aspnet35_membership.htm
or create a custom
How do I create a custom membership provider for ASP.NET MVC 2?
http://www.asp.net/general/videos/how-do-i-create-a-custom-membership-provider
+2
a source to share
Yes, ASP.NET MVC uses the Membership API by default. However, you can always use your own logic if you like, but most of the functionality for the membership API is already there.
You will need:
- Custom MembershipProvider
- If you are using roles, the custom RoleProvider
- If you are using profiles, a custom ProfileProvider
0
a source to share