Is this specification correct in the root web.config file? I did not use the child web.config file in the protected folder.
<system.web> <authentication mode="Forms"> <forms name=".ASPXAUTH" loginUrl=""> </forms> </authentication> </system.web>
Then another specification for system.web is also located in the root web.config:
<location path="to protected folder"> <system.web> <authorization> <deny users="?"/> </authorization> </system.web>
Caroline
source share