ASP.NET 2.0 Membership/Role Observations
After digging a bit deeper this week on the built-in Membership/Roles functionality, although it is quite extensive there seems to be a weakness in using it for a more robust security model. Maybe I've missed something, but here goes:
Let's say in a sample application I have roles entitled Manager and Employee. So, within my application I can now say if user is in role X show/do this. Now, let's say you wanted to have attributes to the role "Manager". The "Manager" role can do the following ficticous tasks: Create Users, Delete Users, Update Website, Add Document, essentially creating a group with various permissions.
From what I see there is no more depth beyond the Role...