More questions on web.config
In reading web.config and machine configs, what is the difference between
the ConfigurationManager and the WebConfigurationManager, and when would you
use one over the other. They both appear to be able to get values and
connection strings from the config files.
Date:Mon, 13 Aug 2007 13:32:30 -0600
Author:
|
Re: More questions on web.config
Accessing configuration sections with ASP.NET requires the use of
System.Web.Configuration.WebConfigurationManager,
instead of System.Configuration.ConfigurationManager.
Checking for the current HttpContext is enough to determine
which manager needs to be used to get the configuration section.
Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en espaol : http://asp.net.do/foros/
======================================
"eagle" wrote in message news:%23xuQwCe3HHA.3900@TK2MSFTNGP02.phx.gbl...
> In reading web.config and machine configs, what is the difference between the ConfigurationManager and the
> WebConfigurationManager, and when would you use one over the other. They both appear to be able to get values and
> connection strings from the config files.
>
>
>
Date:Mon, 13 Aug 2007 15:41:10 -0400
Author:
|