zxprince
zxprince

Reputation: 387

Create custom user registration system as like the MVC3 default user registration system

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

Answers (1)

Eric J.
Eric J.

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

http://www.danharman.net/2011/06/23/asp-net-mvc-3-custom-membership-provider-with-repository-injection/

Upvotes: 3

Related Questions