If I put something like this in my ASP.NET web application's web.config:
   <authorization>
       <allow roles="MyUsers" />
       <deny users="*" />
   </authorization>
and then have an ActiveDirectory group SpecialGroup that is inside MyUsers, will a member of SpecialGroup be allowed to access my application?