Reputation: 387
Is the MV3 default user registration system is good enough ? If not How should i create my one as like that default one (with Membership system,Roles system,Profiles system) ? How should i use my DB tables for do that ?
I am new in MVC3 so please give a very good example or a good tutorial link.Please help me.
Upvotes: 1
Views: 865
Reputation: 150148
"Good Enough" depends on what you need.
I'm using the default Membership Provider and Profile Provider for a fairly busy and complex website. They are a bit awkward, but get the job done.
The SQL Membership Provider is a bit more flexible and can be used with MVC 3.
If you want to implement a custom membership provider have a look at
http://msdn.microsoft.com/en-us/library/f1kyba5e.aspx
http://www.asp.net/web-forms/videos/how-do-i/how-do-i-create-a-custom-membership-provider
Upvotes: 3