As all you know, Sharepoint 2003 has simple access rights privilages. You can only grant rights (Reader, Contributor, Administrator) but unfortunatelly you can not deny access. So, if someone is not welcome in SharePoint portal there is no simple way to restrict access for him.
I found nice articles how to secure access to certain page using web.config:
<authorization>
<allow users="MySuperAdmin"/>
<deny users="*"/>
</authorization>
But... It doesn't work in my two SharePoint installations (test and live). No matter what I enter in <authorization>
tag, I am still able to enter SharePoint pages. Even when I deny access for all, like this:
<authorization>
<deny users="*"/>
</authorization>
... I am still able to see all pages (with my local Administrator user or any other non-admin user).
Could you please help what is wrong in my code?