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