2012-10-11 174 views
1

我知道,我們可以從這樣的根web.config文件停止web.config文件中的繼承停止的web.config繼承:如何從兒童應用

下面的根網站中使用該屬性。 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做任何屬性或somethiing。

回答

2

你可以做的事情不多,除非你在IIS7上,在這種情況下,你可以使用配置鎖定描述here on www.iis.net