//首先添加一个xml文件,一定要先手动添加一个根结点,否则程序找不到根结点
//<user></user>
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Xml;//这个是添加的
public partial class _Default : System.Web.UI.Page
{
private XmlDataDocument xmlDoc;//声明全局变量xmlDoc,类型是XmlDataDocument
protected void Page_Load(object sender, EventArgs e)
{
}
//声明加载xml文件的方法
private void xmlLoad()
{
xmlDoc = new XmlDataDocument();
xmlDoc.Load(Server.MapPath("trytry.xml"));//文件名是trytry.xml
}
//点击添加按钮,添加数据
protected void ButtonAdd_Click(object sender, EventArgs e)
{
xmlLoad();//调用加载xml文件的方法
XmlNode xmldocSelect = xmlDoc.SelectSingleNode("user");//xml文件的根结点是user
XmlElement el = xmlDoc.CreateElement ("person");//添加person节点
el.SetAttribute("name", "云云");//添加属性名,及属性值
el.SetAttribute("sex", "女");
el.SetAttribute("age", "25");
XmlElement xesub1 = xmlDoc.CreateElement("pass");//添加person节点的子节点
xesub1.InnerText = "123";//节点pass下的值是123
el.AppendChild(xesub1);//将节点pass添加到父节点person下
XmlElement xesub2 = xmlDoc.CreateElement("address");
xesub2.InnerText = "中国西安";
el.AppendChild(xesub2);
xmldocSelect.AppendChild(el);//将节点person加到根结点xmldocSelect下
xmlDoc.Save(Server.MapPath("trytry.xml"));//保存,这个十分重要,否则没有数据
}
//点击修改按钮,修改数据
protected void ButtonUpdata_Click(object sender, EventArgs e)
{
xmlLoad();//调用加载xml文件的方法
XmlNodeList list = xmlDoc.SelectSingleNode("user").ChildNodes;//获得根节点user下的所有子节点
//遍历所有子节点
foreach (XmlNode node in list)
{
XmlElement xe = (XmlElement)node;//把节点node转换成XmlElement型
if (xe.GetAttribute("name") == "云云")//如果节点的属性name的值是"云云"
{
xe.SetAttribute("name","哈哈");//把节点的name属性改为"哈哈"
}
XmlNodeList sublist = xe.ChildNodes;//再获得该节点的子节点
foreach (XmlNode subnode in sublist)
{
XmlElement subxe = (XmlElement)subnode ;
if (subxe.Name == "address")//如果节点是"address"
{
if (subxe.InnerText == "中国西安")//如果该节点下的值是"中国西安"
subxe.InnerText = "中国三河";
break;
}
}
}