If I wanted to make sure that AUTHENTICATED users were denied access to Enroll.aspx and UNAUTHENTICATED users had access how should my "allow/deny users" tags be set in the web.config?
<location path="Enroll.aspx">
<system.web>
<authorization>
<allow users = "?" />
<deny users = "?" />
</authorization>
</system.web>
</location>