在vb 2010中编辑app.config

时间:2017-01-16 06:27:58

标签: vb.net

美好的一天,任何人都会如此慷慨地帮助我。我有这个项目,vb10与MySql。我的连接使用app.config来提供所有连接要求。现在我的问题是我如何编写app.config文件,如果我想编辑连接要求,如我们的服务器,用户,传递或dbname。我通过网络搜索但无济于事。我有这个代码:

Dim config As Configuration = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None)
    config.AppSettings.Settings("user").Value = "hello" 'sample new value
    config.Save(ConfigurationSaveMode.Modified)
    ConfigurationManager.RefreshSection("appSettings")

但是,它不会改变app.config的任何内容。伙计们,需要帮助很严重。

0 个答案:

没有答案