Using .NET Framework 1.1 i have used following code to pull a encrypted connection string from the app.conf file, I used....
System.Configuration.ConfigurationSettings.AppSettings["connstr"].ToString();
And the compiler gave me the following error.
Warning 1 'System.Configuration.ConfigurationSettings.AppSettings' is obsolete: 'This method is obsolete, it has been replaced by ConfigurationManager.AppSettings'
So I try and change my Code to the following ...
System.Configuration.ConfigurationManager.AppSettings["connstr"].ToString();
and I get a compiler error, saying the compiler can't find ConfigurationManager.
Well here's the confusion.... The Original System.Configuration.ConfigurationSettings class is found in the System.dll assembly. There is a new assembly with all the new ConfigurationManager classes as System.Configuration.dll. Before using the ConfigurationManager class, you must first set a reference to the new System.Configuration.dll.
Add a reference to System.Configuration by clicking Project -> Add Reference... and searching through the .NET components for System.Configuration
Tuesday, February 06, 2007
Subscribe to:
Post Comments (Atom)
1 comments:
u need to add a dll system.configuration so as to get configurationmaneger.
Post a Comment