我知道我们可以从root 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可以用来做任何属性或事情。