I'm curious how web.config is loaded into the application, is there any link to the values โโin the web.config file, actually parsing the web.config file, or when the application starts, it loads the values โโinto a singleton or something
This seemed to me because I wanted to check the value in the web.config file for each request in the global.asax.cs file:
protected void Application_BeginRequest(object sender, EventArgs e) { if( ConfigurationManager.AppSettings["abc"] != null) { } }
source share