Archive
Posts Tagged ‘authentication’
Is it possible to disable forms authentication for specific sub directories of an application?
June 19, 2015
Leave a comment
Yes we can disable forms authentications for specific sub directory using below code in config files
<location path="Folder" allowOverride=”false”>
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
Hope this help !
Categories: ASP.NET
.NET Framework, allowoverride, authentication, location, vb.net, web.config
Comments