如何从Child应用程序停止web.config继承

时间:2012-10-11 07:54:33

标签: c# web-config

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

1 个答案:

答案 0 :(得分:2)

除非你在IIS7上,否则你无能为力,在这种情况下你可以按照here on www.iis.net所述使用配置锁定