In ASP.Net, if we create application from directory, the configuration from root will be inherited to its children application.
www.mywebsite.com | |-- [blog] |-- [forum] |-- [others]
so I created these blog
, forum
application but I don't want configuration from www.mywebsite.com
/web.config inherited to blog
& forum
.
I know i can remove it one by one using <remove>
in www.example.com/blog/web.config
. But, is there any simpler way to children application just IGNORE everything on its parent configuration?