Is it possible to access for global application settings(defined on IIS Home screen -> Application Settings). I believe that global web.config should inherited by all applications, but I have tried
var myGlobalSetting = ConfigurationManager.AppSettings["MyGlobalSetting"]
and
var appSettings = (NameValueCollection)HttpContext.Current.GetSection("appSettings");
var myGlobalSetting = appSettings["MyGlobalSetting"];
Both return null. I don't have anything that override or clear settings.
What I am doing wrong? Thanks.