When is web.config read?

后端 未结 2 1500
春和景丽
春和景丽 2021-01-03 05:32

I\'m doing research for an article on the ASP.NET Pipeline, but none of the resources I\'ve covered so far adequately explain when the machine level, and application level,

相关标签:
2条回答
  • 2021-01-03 06:08

    ASP.NET config files work in a hierarchical manner (much the same way as CSS elements).

    Configuration Inheritance

    0 讨论(0)
  • 2021-01-03 06:27

    The most comprehensive description of how asp.net configration files work that I know of is this one at MSDN:

    ASP.NET Configuration File Hierarchy and Inheritance

    It is written for the .NET 3.5 framework so the info should be as current as you'll likely find. It describes exactly how the various configuration files are read and merged into the runtime settings for the application in quite a lot of detail.

    0 讨论(0)
提交回复
热议问题