If you want to stop any tom dick and harry from getting in, you can try
HTML Code:
<system.web>
...
<authorization>
<deny users="?" />
</authorization>
<customErrors mode="Off" />
<trace enabled="true" pageOutput="true" localOnly="false"/>
</system.web> Change it to
HTML Code:
<system.web>
...
<authorization>
<allow roles="HAP Users" />
<allow roles="Domain Admins" />
<deny users="*" />
</authorization>
<customErrors mode="Off" />
<trace enabled="true" pageOutput="true" localOnly="false"/>
</system.web> See if that works