M
[myfirstname]
Hello
I've seen several examples around the web where people put all the
values in ConfigurationSettings.AppSettings into Application State
variables in global.asax, like this:
foreach (string key in ConfigurationSettings.AppSettings.Keys) {
Application[key] = ConfigurationSettings.AppSettings[key];
}
Does ASP.NET retreive values from Application faster than from
ConfigurationSettings.AppSettings or what's the point of this?
Just wondering if I should do the same or not...
/Mikael
I've seen several examples around the web where people put all the
values in ConfigurationSettings.AppSettings into Application State
variables in global.asax, like this:
foreach (string key in ConfigurationSettings.AppSettings.Keys) {
Application[key] = ConfigurationSettings.AppSettings[key];
}
Does ASP.NET retreive values from Application faster than from
ConfigurationSettings.AppSettings or what's the point of this?
Just wondering if I should do the same or not...
/Mikael