Home
> ASP.NET > Is it possible to disable forms authentication for specific sub directories of an application?
Is it possible to disable forms authentication for specific sub directories of an application?
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 (0)
Trackbacks (0)
Leave a comment
Trackback
Comments