Ich versuche hinzuzufügen
<location inheritInChildApplications="false">
auf die web.config meiner übergeordneten Webanwendung, aber es scheint nicht zu funktionieren.
Meine Eltern web.config
haben:
<configuration>
<configSections>
</configSections>
// 10 or so custom config sections like log4net, hibernate,
<connectionStrings>
</connectionStrings>
<appSettings>
</appSettings>
<system.diagnostics>
</system.diagnostics>
<system.web>
<webParts>
</webParts>
<membership>
</membership>
<compilation>
</compilation>
</system.web>
<location ..>
<system.web>
</system.web>
</location>
<system.webServer>
</system.webServer>
Meine untergeordnete Webanwendung wird als Anwendung in IIS eingerichtet und erbt von der übergeordneten Anwendung, web.config
was zu Problemen führt.
Wo genau soll ich das platzieren
<location inheritInChildApplications="false">
ignoriert es also alle verschiedenen web.config Einstellungen?