I would like to add user accounts to my MVC 3 web app.For each user account I would like to add a corresponding user profile, with the usual email and address contact info, etc. Also maybe add some security questions for when the user forgets there login credentials.
I’ve read some info about using the provided ASP.net profile options and also some people suggest using your own membership tables as it quicker retrieveing user profile info especially when the user list grows.
Can anyone give me some insight on which approach to use and also point me in the direction of a any tutorials showing me how to implement User accounts and profiles within an MVC 3 Web Application?
Many thanks D