I am developing a asp.net project and I dont have very long web.config file yet(more then 400 lines). but with this nhibernate log4net and urlrewrites. its getting bigger and bigger. is there a proper way to divide web.config into pieces. like nhibernate.config and log4net.config ofcourse urlrewrite.config
Share
system.webServeris a configuration section group – you cannot externalize that.You can only put the configSource= on a configuration section – e.g.
What is a configuration section group or a regular configuration section can only be determined by looking at the documentation for those things (and even then it’s often not very easy to figure out whether it’s a section or a section group 🙁 ).