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#?