What is the best way to implement Users & Roles Authorization and Authentication in MVC 3
问题 I am looking to see what is the best way to implement asp.net membership in an MVC 3 project. One thing to note is that I have a separate users table and would like to still use this. So can I link my users table to the asp.net memberships table? Cheers, Noel. 回答1: Description You can implement your own MembershipProvider. Then you have full control about how authentification works and wich database / tables are relevant. I think you dont need the default asp.net membership database. More