码迷,mamicode.com
首页 > Windows程序 > 详细

C# winform 在xml文件中根据指定节点名查找节点名以及值

时间:2015-04-03 09:38:17      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:xml   winform   指定节点   

简单粗暴,直接上代码:

 XmlDocument xmlDoc = new XmlDocument();
   xmlDoc.Load(Help.basePath);
  XmlNode root = xmlDoc.SelectSingleNode("//cusBanNetList");
   XmlElement timelock = xmlDoc.CreateElement("BanNetList");
  timelock.InnerText = txtBanNetworkUrl.Text;
 root.AppendChild(timelock);
   xmlDoc.Save(Help.basePath);


Help.basePath------------文件路径

cusBanNetList----------节点名

txtBanNetworkUrl.Text---------------节点值

C# winform 在xml文件中根据指定节点名查找节点名以及值

标签:xml   winform   指定节点   

原文地址:http://blog.csdn.net/u014180504/article/details/44834893

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!