想在
Windows应用程序中以编程方式更改利用asp.net成员身份提供程序的数据库的连接字符串. system.configuration命名空间允许更改用户设置,但是,我们要调整应用程序设置?需要编写一个使用XML来修改类的类吗?是否需要删除当前的连接(可以选择要清除的连接)并添加一个新的连接?可以调整现有的连接字符串吗?
解决方法
必须做这个确切的事情.这是为我工作的代码:
var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); var connectionStringsSection = (ConnectionStringsSection)config.GetSection("connectionStrings"); connectionStringsSection.ConnectionStrings["Blah"].ConnectionString = "Data Source=blah;Initial Catalog=blah;UID=blah;password=blah"; config.Save(); ConfigurationManager.RefreshSection("connectionStrings");