2553-03-23

XML Document

private void UpdateConfigData()
{
System.Xml.XmlDocument doc = new System.Xml.XmlDocument();
doc.Load(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile);


//Looping through all nodes.
foreach (XmlNode node in doc.ChildNodes.Item(1))
{
//Searching for the node “”
if (node.LocalName == "dataConfiguration")
{
node.Attributes[1].Value = "db1"; // ใส่ค่าที่ต้องการแก้ไข
}
}
//Saving the Updated values in App.config File.Here updating the config
//file in the same path.
doc.Save(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile);
}

มีแบบที่น่าสนใจ กด

ไม่มีความคิดเห็น:

แสดงความคิดเห็น