I've got a web.config file for an ASP.NET app that allows users in the "DOMAIN\#All Blub Users" access. However, they get prompted for credentials and ultimately get an access is denied message.
However, if I add a user to a test group "DOMAIN\Blub Users" and change web.config, the user is able to access the site.
Do I need to escape that leading hash symbol in the group name? I know you do in Active Directory when it comes to the Distinguished Name (with a slash or its hex value in parens).
Example web.config
<configuration>
<system.web>
<authorization>
<allow roles="DOMAIN\#All Blub Users,DOMAIN\Blub Users" />
</authorization>
...
Thanks.