我知道我们可以停止从根 web.config 文件继承 web.config 文件,如下所示:
下面在根 web.config 文件中使用的此属性将阻止应用程序将其配置作为默认配置传递给子应用程序。
<!-- Root web.config file -->
<?xml version="1.0"?>
<configuration>
<location path="." inheritInChildApplications="false">
<system.web>
<compilation debug="false" />
<!-- other configuration attributes -->
</system.web>
</location>
</configuration>
但我只是想知道我的子应用程序的 web.config 是否有任何属性或东西可以做到这一点。