I was wondering, what’s the best approach in creating users authentication for my asp.net-mvc web application.
Should I use the Forms authentication using a custom MembershipProvider ? Or should I implement my own login and registration mechanism for my users?
Seems silly to reinvent the wheel if you don’t have a pressing business need to do so. I’d go with forms authentication with a custom provider (if necessary)