Position: CSST软件>> Tag : xml                          

修改配置信息 ( Archived on 2008-6-19 8:30:27 454 Views )

相应源码如下所示:

public void SaveConfig(string key, string value)
{
    try
    {
	string fileName = "Web.Config";
	XmlDocument document = new XmlDocument();
	document.Load(fileName);
	((XmlElement)document.SelectSingleNode(@"//AppSetting/add[@key='" + key + "']")).SetAttribute("Value", value);
	document.Save(fileName);
    }
    catch (Exception ex)
    {
	throw new Exception(ex.Message);
    }
}

Page 1 In 1 |   1  
Remark:无边落日萧萧下 不尽长江滚滚来
Contact Us For: CSST软件 | About Us:关于我们
Powered By CSST Soft Studio CopyRight 2008 - 2010