I allow users in with Authentication "Forms" but want to authorize users to see files in the apps folder.
Working code:
<Authentication mode="Forms">
<forms loginUrl="gateway/Default.aspx name="form">
</forms>
</authentication>
I want to add in:
<location path="gateway/apps">
<system.web>
<authorization>
<deny users="?" />
</authorization>
</system.web>
</location>
Go to the complete details ...