vote up 0 vote down star

someone to example coding me thank

key and value save in app.config

flag

2 Answers

vote up 0 vote down check
  • asp.net

Configuration config = WebConfigurationManager.OpenWebConfiguration(null); AppSettingsSection app = config.AppSettings; app.Settings.Add("x", "this is X"); config.Save(ConfigurationSaveMode.Modified);

  • winform

Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); AppSettingsSection app = config.AppSettings; app.Settings.Add("x", "this is X"); config.Save(ConfigurationSaveMode.Modified);

link|flag
when i open app.config it not write "x" and "this is x" – monkey_boys Jul 27 at 7:34
vote up 0 vote down

Something like this may be : http://geekswithblogs.net/akraus1/articles/64871.aspx

link|flag
why i cant see ConfigurationManager class – monkey_boys Jul 27 at 7:27
add : using System.Configuration; in the using section – Kris-I Jul 28 at 11:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.