Extending the ASP.Net Security model to use rights : Part one - IPrincipal
Every now and again I find myself disappointed in the asp.net security model. The ability to assign roles is useful but if a role changes and I have implemented code security by role I now have to alter my PrincipalAttributes. That isn't a huge issue, but I am not of a fan of recompiling my code because the of a minor change when I could secure the code by a right and assign a right to a role in a data store. The first thing we need is a right using System;
namespace ObjectHelpDesk.Securi...
[More]