If I want to create a customized ASP.Net MVC3 form based authentication, what are the interfaces I should implement? I want to do the role based form authentication.
1 Answer
You could implement a custom Membership provider and a RoleProvider. Those are 2 abstract classes that have lots of methods but you don't need necessarily to implement all of them. Only those that you intend to use. Here's an article which illustrates some of the basic steps.