We are implementing forms authentication on our site. We noticed that when
we try to lock down a folder whose name as dashes in it (e.g. Secure-Folder)
it is ignored. Is this a known issue?
Thanks
i cannot confirm this.
this works as expected:
<location path="private">
<system.web>
<authorization>
<deny users="?" />
</authorization>
</system.web>
</location>
<location path="private-area">
<system.web>
<authorization>
<deny users="?" />
</authorization>
</system.web>
</location>
-----
Dominick Baier (http://www.leastprivilege.com)
Developing More Secure Microsoft ASP.NET 2.0 Applications (http://www.microsoft.com/mspress/books/9989.asp)
> We are implementing forms authentication on our site. We noticed that
> when we try to lock down a folder whose name as dashes in it (e.g.
> Secure-Folder) it is ignored. Is this a known issue?
>
> Thanks