Hi. I would like to set up a web application so that anyone authenticated in Active Directory could get into a secured directory EXCEPT for those users in a specific OU. I would also like to secure down one page in that directory so that only a certain group can access it. What follows is what I would like to accomplish, but I am not sure if this is possible. I can't find anything in a search that shows that something like this is possible, so I am asking here. Thank you.
<-- Allow any authenticated user into the directory, except for accounts in the Students OU --><location path="Secured"><system.web><authorization><deny users="AD\Students\*"/><deny users="?"/><allow users="*"/></authorization></system.web></location><-- Allow only certain groups to run this particular page --><location path="Secured/Update.aspx"><system.web><authorization><allow roles="AD\MgmtGroup"/><deny users="*"/></authorization></system.web></location>