7
inheritInChildApplicationsを使用して子Webアプリケーションでweb.config継承を回避する
追加しようとしています <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設定を無視しますか?