by Marius Gheorghe
18. September 2008 07:29
As you probably know by default web.config inheritance is on. This can create problems even in very simple situations (for instance registering the same user control in both applications). To disable inheritance just modify the root web.config file like this :
<location path="." inheritInChildApplications="false">
<system.web>
</system.web>
</location>