ASP.NET role management with windows authentication -


I am working on an intranet website using ASP.NET and was thinking that when Windows certification is on my website I can see that the user is related to the group with the user object, so why do I need to enable the roles that Windows authentication is enabled?

It is often that someone in the "Administrator" group on the Active Directory is the administrator No will point to the "Administrator" group network administrator on your Windows network, but actually what you really want is a separate Administrator group specific for your application. If you had a system to operate a few numbers for the financial system, you would not want the network administrator to be an administrator for the financial system.

This is the role where the role manager comes in. The role manager allows you to continue using Windows authentication, but create your own roles different from your network, and assign a different set of users to that role. For example, on your intranet, you want the managers to edit pages, so you can specify them in the "Page Editor" roll.

Comments