Return to Snippet

Revision: 32732
at October 2, 2010 01:31 by jprochazka


Updated Code
<!-- Add the following "location" tags to the root web.config that you do not wish to allow inheritance from -->

<location path="." inheritInChildApplications="false">
    <system.web></system.web>
</location>

Revision: 32731
at October 2, 2010 01:30 by jprochazka


Initial Code
<!-- Add the following "location" tags to the root web.config that you do not wish to allow inheritance from -->

<location path="." inheritInChildApplications="false">
    <system.web></system.web>
</location>

Initial URL


Initial Description
Using inheritInChildApplications="false" within a <location> can stop the Web.config section it surrounds from being inherited by applications located within said application.

Initial Title
Block inheritance of the root web.config to child applications.

Initial Tags


Initial Language
ASP