I Have developed a simple ASP MVC 5 app with two pages. I have started the project with ASP MVC empty templates. Now I have to implement authorization and authentication for it. In my case have to get all authentication and authorization (UserRoles and IsInRole information) details from another party.
So I Googled and found two possible ways to do my task. But I'm totally beginner for identity and custom membership providers.
- Using ASP.Net Identity
- Using custom Role and Membership provider.
What would be the best way to do this? Can any one suggest a good resource to follow or is there are any other way?