XML和DataSet转换

本文介绍如何在ASP.NET应用程序中使用XML作为数据源,包括读取XML文件到DataSet,以及如何通过添加、删除和修改操作来更新XML数据。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

用.NET可以方便的操作XML,当做数据源

*当XML转到DataSet的时候会遵循如下几个原则
*具有属性的元素和具有自节点的元素会变成表
*重复的元素会变成列

这里使用GridView绑定
  XML:

<?xml version="1.0" standalone="yes"?>
<family>
  
<relation="myfather">
    
<name></name>
    
<sex>man</sex>
    
<age>60</age>
  
</p>
  
<relation="mymather">
    
<name></name>
    
<sex>women</sex>
    
<age>55</age>
  
</p>
</family>
 读取:
 protected void Page_Load(object sender, EventArgs e)
    {
        bind();
    }
  
protected void bind()
    {
        DataSet ds 
= new DataSet();
        ds.ReadXml(Server.MapPath(
"../people.xml"));
        GridView1.DataSource 
= ds.Tables[0].DefaultView;
        GridView1.DataBind();

        Session[
"ds"= ds;

    }
添加:
protected void Button1_Click(object sender, EventArgs e)
    
{
       
     DataSet ds 
= (DataSet)Session["ds"];
        
string name = this.TextBox1.Text.ToString();
        
string age = this.TextBox2.Text.ToString();
        
string sex = this.TextBox3.Text.ToString();
        
string relation = this.RadioButtonList1.SelectedValue.ToString();

        DataRow dr 
= ds.Tables[0].NewRow();

        dr[
"relation"= relation;
        dr[
"age"= age;
        dr[
"sex"= sex;
        dr[
"name"= name;
        ds.Tables[
0].Rows.Add(dr);

     Session[
"ds"= ds;
        ds.WriteXml(Server.MapPath(
"../people.xml")); 
     bind();
    }

删除:

  protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
    {
        DataSet ds 
= (DataSet)Session["ds"];
        ds.Tables[
0].Rows.Remove(ds.Tables[0].Rows[e.RowIndex]);
        Session[
"ds"= ds;
        ds.WriteXml(Server.MapPath(
"../people.xml"));
        bind();
    }

修改:
 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值