Namespace for Configuration Manager in ASP.Net
What is the namespace used for Configuration Manager
Solution
To use the Configuration Manager Add new reference "System.Configuration".
string myValue = ProjectNameSpace.Properties.Settings.Default["SettingTitle"].ToString();
You can also try
string myValue= ConfigurationManager.AppSettings["keyname"].ToString();
More Questions