Is there any real benefit to using ASP.Net Authentication with ASP.Net MVC?

Posted by alchemical on Stack Overflow See other posts from Stack Overflow or by alchemical
Published on 2010-04-17T00:56:51Z Indexed on 2010/04/17 1:03 UTC
Read the original article Hit count: 516

I've been researching this intensely for the past few days.

We're developing an ASP.Net MVC site that needs to support 100,000+ users. We'd like to keep it fast, scalable, and simple. We have our own SQL database tables for user and user_role, etc. We are not using server controls.

Given that there are no server controls, and a custom membershipProvider would need to be created, where is there any benefit left to use ASP.Net Auth/Membership?

The other alternative would seem to be to create custom code to drop a UniqueID CustomerID in a cookie and authenticate with that. Or, if we're paranoid about sniffers, we could encrypt the cookie as well.

Is there any real benefit in this scenario (MVC and customer data is in our own tables) to using the ASP.Net auth/membership framework, or is the fully custom solution a viable route?

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about asp.net-mvc