Authorization in ASP.NET applications
In general, two approaches to Authorization are possible for ASP.NET applications. First is role based, users are grouped in application-defined roles. Members of a particular role share same privileges within the application. Access to operations is authorized based on the role-membership of the caller. Resources are accessed using fixed identities (such as Web application’s or Web service’s process...