我想加上
<location inheritInChildApplications="false">
我父母的 web 应用程序的 web.config,但它似乎没有工作。
我父母的 web.config
有:
<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>
我的子 Web 应用程序是作为 IIS 中的应用程序设置的,并且是从父代的 web.config
继承的,这会导致问题。
我到底应该把它放在哪里
<location inheritInChildApplications="false">
所以它忽略了所有的 web.config 设置?