Is it possible to disable all authentication in a subfolder of a web site that is Forms Authenticated? How do you accomplish this?
Yes, place a web.config file on the subfolder with this content:
<configuration>
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
    </system.web>
</configuration>
                        yes you can, you can use location tag in the web.config to configure folder level security.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With