Question

If I have an ASP.Net MVC applicaiton where users can only access via an NTLM authenticate account, do I need to use ASP.Net Membership services and issue cookies?

Or do I have completely the wrong end of this particular stick?

Was it helpful?

Solution

You never have to use the asp.net membership provider, it is just an option. If all you need to do is authenticating the user, NTML works just fine by itself. If you need to use the user's identity for further authorization or personalization on the site you need to use some sort of user management, but it doesn't have to be the membership provider, you can write your own or your own. I doesn't make any difference whether you are using mvc or web-forms.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top