Safari
Safari

Reputation: 11945

ASP.net MVC 3 user registration

I am new to asp.net mvc 3 world I looked at some tutorials to get started. I want to know what is the best option to manage users?

I intended use of the membership provider (and modify this for extend the default fields) or use the user profiling + membership provider?

What are the advantages and disadvantages of these? once I made ​​my application the idea is create a mobile application: a user must be able access by user and password (my web application)... it affects my choice?

Upvotes: 1

Views: 968

Answers (2)

alifeofkaizen
alifeofkaizen

Reputation: 139

Another good example is the NerdDinner project.

Site: http://www.nerddinner.com

Source Code: http://nerddinner.codeplex.com

Upvotes: 1

tugberk
tugberk

Reputation: 58484

Start from here :

http://www.asp.net/mvc

You can take advantage of a sample application :

http://www.asp.net/mvc/tutorials/mvc-music-store-part-1

And the following one is specific to membership :

http://www.asp.net/mvc/tutorials/mvc-music-store-part-7

I would also consider integrating OpenAuth.

DotNetOpenAuth oAuth in ASP.NET MVC

Upvotes: 5

Related Questions