In reading this question, I asked in one of the answers the following:
This answer implies that ASP.NET reads web.config and other config files from the top, ie: top-down. I thought config files were read as a "single instance" meaning that the compiler first parses the config file for accuracy and then compiles it, but it seems to be compiling it on the fly - line by line.
Is that true?
How does ASP.NET deal with config files? Is there a link someone could share with me the order of processing config files in ASP.NET?