What alternatives are there for asp.net forms authentication?

Posted by Eytan Levit on Stack Overflow See other posts from Stack Overflow or by Eytan Levit
Published on 2010-06-07T14:09:44Z Indexed on 2010/06/07 14:12 UTC
Read the original article Hit count: 203

Hi,

We are developing a web app that will have a pretty complex user and permission system.

The general idea is that we have 3 levels of security:

  • a simple user - that can only access basic data that is in a data repository
  • a manager - that can open up data repositories
  • a superuser - that can open up repository factories.

each repository contains various data types(text, images, etc etc).

We are looking for authentication methods that will allow us: 1. Scalability. 2. Customization. 3. To create permissions that will effect the GUI + deny access to certain pages. 4. To create predefined roles - that will allow for easy setup of new users. 5. To create custom roles for specific users - allowing them permission sets that are different from the predefined roles.

Thanks in advance

© Stack Overflow or respective owner

Related posts about c#

Related posts about ASP.NET