同一個網站 下的子網站 web.config 不衝突的方法

摘要:同一個網站 下的子網站 web.config 不衝突的方法


若網站下還有子網站 
webconfig 會被根網站的 webconfig 繼承
想要擺脫這個方法 就要再根網站下的web.config 
設定這個 即可解決問題
不要將根目錄網站的設定繼承(Inherit)到子網站應用程式(Child Applications)。
<location path="." inheritInChildApplications="false">
    <system.web>
    </system.web>
</location>

資料來源

http://blog.miniasp.com/post/2008/06/Making-child-ASPNET-applications-work.aspx

保哥的部落格