Hello,
The following setting in web.config does not work:
<authorizatio n>
<allow roles="DOMAIN\A dministrators" />
<deny users="*" />
</authorization>
The following setting in web.config does work:
<authorizatio n>
<allow roles="BUILTIN\ Administrators" />
<deny users="*" />
</authorization>
This is a problem for me because I also want to allow other domain
groups to use the application.
Does anybody know why the builtin account works but not the domain
account? Is there anything that I need to do?
Thank you,
Brian Takita
The following setting in web.config does not work:
<authorizatio n>
<allow roles="DOMAIN\A dministrators" />
<deny users="*" />
</authorization>
The following setting in web.config does work:
<authorizatio n>
<allow roles="BUILTIN\ Administrators" />
<deny users="*" />
</authorization>
This is a problem for me because I also want to allow other domain
groups to use the application.
Does anybody know why the builtin account works but not the domain
account? Is there anything that I need to do?
Thank you,
Brian Takita
Comment