asp.net - Disable web.config inheritance for individual child applications -
is there way of disabling child web.config inheritance individual child applications?
i aware of inheritinchildapplications="false"
applied root web.config , affects child web applications. if need disable inheritance single web application (or specific list of child applications) , keep others?
add root web.config
before closing </configuration>
element:
<location path="myapp" inheritinchildapplications="false" />
where myapp
child application wish disable configuration inheritance for.
Comments
Post a Comment