ASP.NET - Manual authentication system

Posted by Gal V on Stack Overflow See other posts from Stack Overflow or by Gal V
Published on 2010-06-08T07:50:08Z Indexed on 2010/06/08 7:52 UTC
Read the original article Hit count: 291

Hello all,

Wer'e developing an ASP.NET C# application, which will contain an authentication system that authenticates users in multiple levels (user, admin, super-admin, etc.).

Our idea is NOT to use the built in ASP.NET forms authentication feature. Our plan is to create a whole 'new' system for it- based on the Session object, and SQL database contains users' info such as username & password.

Is there any SERIOUS different between our idea to the Forms authentication feature?

What security risks do we take? How do we solve them?

Is this a good alternative for the forms authentication feature?

Thanks in advance !

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about authentication