winform 写app。config
public void SaveConfig(string ConnenctionString, string strKey)//写入动态的数据库配置信息
{
XmlDocument doc = new XmlDocument();
//获得配置文件的全路径
//获取App.config文件绝对路径
//string strFileName = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase; //这是获取配置文件路径的
//strFileName = strFileName.Substring(0, strFileName.Length - 10) + "App.config"; //这是获取配置文件的
//string strFileName = AppDomain.CurrentDomain.SetupInformation.ConfigurationFile;
string strFileName = System.Windows.Forms.Application.ExecutablePath + ".config";
doc.Load(strFileName);
//找出名称为“add”的所有元素
XmlNodeList nodes = doc.GetElementsByTagName("add");
for (int i = 0; i < nodes.Count; i++)
{
//获得将当前元素的key属性
XmlAttribute att = nodes[i].Attributes["key"];
//根据元素的第一个属性来判断当前的元素是不是目标元素
if (att.Value == strKey)
{
//对目标元素中的第二个属性赋值
att = nodes[i].Attributes["value"];
att.Value = ConnenctionString;
break;
}
}
doc.Save(strFileName);
}