How to implement User base security not role base in asp.net?
Posted
by Gaurav
on Stack Overflow
See other posts from Stack Overflow
or by Gaurav
Published on 2010-04-26T14:52:47Z
Indexed on
2010/04/28
11:13 UTC
Read the original article
Hit count: 224
Hi,
I have to implement User base security in my Web project using .Net3.5. Followings are some we need:
- Roles can be Admin, Manage, Editor, Member etc
- User can have multiple roles
- Every roles has its own dynamic menus and restrictions/resources
- All menus and interface will populate dynamically from Database
I heard some where this kind of i.e user base security can be implemented using HashTable but I dont know how is it?
Today I came to know that for this kind of work Java people use Interceptor Design patterns. So, how could I do the same in asp.net C#?
© Stack Overflow or respective owner