`
pcajax
  • 浏览: 2159157 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

使用c#+(datagrid控件)编辑xml文件

阅读更多

对xml文件的记录进行删除,修改,或增加新记录。
利用了datagrid控件的sortcommand事件对xml里的记录进行排序。

email:ouyang76.263.net
------------------------------------------
<%@page language="c#" Trace="true"%>
<%@import namespace="System.Data"%>
<%@import namespace="System.IO"%>
<script language="c#" runat="server">
string xmlfile="books2.xml",xpath;
void page_load(Object obj,EventArgs e)
{ <script language="JavaScript" src="http://book.book560.com/ads/ads728x15.js" type="text/javascript"></script>
xpath=Server.MapPath(xmlfile);
  if(!Page.IsPostBack)
   {
      Dataload("isbn");
      }
  }
  void Dataload(string psort)
  {
    DataSet ds=new DataSet();
    FileStream fs=new FileStream(xpath,FileMode.Open);
    ds.ReadXml(fs);
   if(ds.Tables.Count==0)
      {
        Response.Write("xml文件内无记录!!!!");
        fs.Close();
        Response.End();
        }
    Trace.Warn("表记录数",Convert.ToString(ds.Tables[0].Rows.Count));
    DataRow dr=ds.Tables[0].NewRow();//新建一行
    dr["ISBN"] = " Add ISBN";
    ds.Tables[0].Rows.InsertAt(dr,0);//插入到第0行位置
    Trace.Warn("表数目",Convert.ToString(ds.Tables.Count));//以红字显示调试信息
    //grid1.DataSource=ds.Tables[0].DefaultView;
    //grid1.DataBind();
    DataView dv=new DataView(ds.Tables[0]);
    Trace.Warn("字串长度:"+psort,Convert.ToString(psort.Length));//排序字符串的长度
    if(psort.Length>0)
         dv.Sort=psort;
    grid1.DataSource=dv;
    grid1.DataBind();
    fs.Close();
  }
  void grid_sort(Object obj,DataGridSortCommandEventArgs e)
  {
   if(grid1.EditItemIndex==-1)
     Dataload(e.SortExpression);
    else
     Response.Write("正在编辑暂不能排序!!");
  }
  void grid_edit(Object obj,DataGridCommandEventArgs e)
  {
  grid1.EditItemIndex=(int)e.Item.ItemIndex;
  show_del("hide");
  Dataload("");
  }
  void grid_cancel(Object obj,DataGridCommandEventArgs e)
  {
  grid1.EditItemIndex=-1;
  show_del("show");
  Dataload("");
  }
  void grid_update(Object obj,DataGridCommandEventArgs e)
  {
  int numcell=e.Item.Cells.Count;//单元格数目(e.Item是当前发生事件的表格行)
  int currentrow=e.Item.DataSetIndex;
  //int curr2=e.Item.ItemIndex;//与上句等价,可以不带(int)
  Trace.Warn("当前更新行号 = ",Convert.ToString(currentrow));
  //Trace.Warn("2当前更新行号 = ",Convert.ToString(curr2));
    DataSet ds=new DataSet();
    ds.ReadXml(xpath);//将xml模式和数据读取到dataSet;
    DataRow dr;//表示DataTable中的一行信息.
     if(currentrow==0)
       dr=ds.Tables[0].NewRow();
     else
       dr=ds.Tables[0].Rows[e.Item.DataSetIndex - 1];
    string[] str={"isbn", "author", "title", "category", "comments"};
    int j=-1;
    for(int i=2;i<numcell;i++)//跳过1和2column
     {
        j=j+1;
        string ctext;
        ctext=((TextBox)e.Item.Cells[i].Controls[0]).Text;
        dr[str[j]] = ctext;
        Trace.Warn(Convert.ToString(i)+str[j]+":每一行的文本",ctext);
       }
    if(currentrow==0)
    {
      Response.Write("加入新记录!!");
      ds.Tables[0].Rows.InsertAt(dr,0);
      }
    ds.WriteXml(xpath);//将表示dataset的xml写入到xml文件中,包括数据和模式.
    grid1.EditItemIndex = -1;//无此句仍在编辑界面
    show_del("show");
    Dataload("");
  }
  void show_del(string state)
  {
  string tmp=state;
  switch(tmp)
  {
   case "show":
   grid1.Columns[0].Visible = true;
     break;
   case "hide":
    grid1.Columns[0].Visible = false;
     break;
     default:
   grid1.Columns[0].Visible = true;
     break;//也要带break
    }
  }

  void initialize(Object obj,DataGridItemEventArgs e)//注意参数与其它函数不同
  {
     //e.Item.Cells[0].Text="aaaaa";//
     if(e.Item.ItemIndex==0)//如果是第一行
     {
     LinkButton a0=new LinkButton();
     a0=(LinkButton)e.Item.Cells[0].Controls[0];
     LinkButton a1=new LinkButton();
     a1=(LinkButton)e.Item.Cells[1].Controls[0];//在grid内建一个linkbutton控件
    if(a0.Text=="删 除")
        a0.Text="";
    if(a1.Text=="编 辑")
         a1.Text="[AddNew]";
      }
   }
  void grid_del(Object obj,DataGridCommandEventArgs e)
  {
  Response.Write("XX");
  Trace.Warn("正要删除",Convert.ToString(e.Item.ItemIndex));//控件中的行数
  int curr=e.Item.ItemIndex;
    DataSet ds=new DataSet();
    ds.ReadXml(xpath);
    DataRow dr=ds.Tables[0].Rows[curr-1];//有一行是新加的。
    dr.Delete();//找到相应的数据行,将其删除
    ds.WriteXml(xpath);
  grid1.EditItemIndex = -1;
  Dataload("");

  }
</script>

<form runat="server">
<asp:datagrid id="grid1" runat="server"
alternatingitemstyle-backcolor="#eeeeee"
headerstyle-backcolor="lightyellow"
font-size="10pt"
allowsorting="true"
onsortcommand="grid_sort"
oneditcommand="grid_edit"
oncancelcommand="grid_cancel"
onupdatecommand="grid_update"
onitemcreated="initialize"   
ondeletecommand="grid_del"
bordercolor="#999999"
>
<columns>
<asp:buttoncolumn text="删 除" commandname="delete"/>
<asp:editcommandcolumn buttontype="linkbutton" updatetext="更 新" canceltext="取 消" edittext="编 辑" headertext=""/>
</columns>
</asp:datagrid>
</form>
--------------------------------------------------------------------
xml文件(文件名:books2.xml)

<?xml version="1.0" standalone="yes"?>
<books>
  <book>
    <isbn>2e2e2we2we2</isbn>
    <author>fefdw</author>
    <title>2e2eef</title>
    <category>324tg</category>
    <comments>r3rrgeqw21</comments>
  </book>
  <book>
    <isbn>1234345</isbn>
    <author>ssdfdfe</author>
    <title>fgregre</title>
    <category>r4er43trt</category>
    <comments>r3r3redqeq</comments>
  </book>
  <book>
    <isbn>1234345</isbn>
    <author>ssdfdfe</author>
    <title>fgregre</title>
    <category>r4er43trt</category>
    <comments>r3r3redqeq</comments>
  </book>
  <book>
    <isbn>0679757651</isbn>
    <author>Tom Peters</author>
    <title>Circle of Innovation</title>
    <category>marketing</category>
    <comments>His most recent book is his best by far!</comments>
  </book>
  <book>
    <isbn>0884270610</isbn>
    <author>Eli Goldthrait</author>
    <title>The Goal</title>
    <category>management</category>
    <comments>Advocate of Theory of Constraints as applied to managment and optimization.</comments>
  </book>
  <book>
    <isbn>068485600X</isbn>
    <author>Jeff Cox, Howard Stevens</author>
    <title>Selling the Wheel</title>
    <category>management</category>
    <comments>Excellent Treatise/Novel on the entire Sales Cycle</comments>
  </book>
  <book>
    <isbn>0672316498</isbn>
    <author>Alan Cooper</author>
    <title>The Inmates Are Running The Asylum</title> <script language="JavaScript" src="http://book.book560.com/ads/ads728x15.js" type="text/javascript"></script>
    <category>management</category>
    <comments>The father of Visual Basic and creator of the new art of Interaction Design - very valuable in designing websites. Basically the worlds most cutting edge thinker in User Interface design aimed at simplifying software use.</comments>
  </book>
</books>

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/21aspnet/archive/2004/12/23/226266.aspx

分享到:
评论

相关推荐

    使用c#+(datagrid控件)编辑xml文件.docx

    在本文中,我们将探讨如何使用C#编程语言和Datagrid控件来编辑XML文件。首先,让我们了解一下XML文件和Datagrid控件的基本概念。 XML(eXtensible Markup Language)是一种用于存储和传输数据的标记语言,它允许...

    C#datagrid控件导入导出xml文件demo

    这个"C# DataGrid控件导入导出XML文件"的示例,就是关于如何使用C#的DataGrid控件与XML数据进行交互的一个教学实例。 XML(eXtensible Markup Language)是一种标记语言,常用来存储和传输结构化数据。在C#中,我们...

    C# WPF DataGrid控件实现三级联动

    在C# WPF开发中,DataGrid控件是用于展示数据集合的重要组件,它提供了丰富的功能,如排序、分页、编辑等。本教程将详细讲解如何利用DataGrid实现三级联动的效果,即在一个DataGrid中更改某一项时,关联的其他两个...

    一个基于C#+ASP.NET实现可以进行DataGrid全数据记录进行编辑维护的程序例子

    3. **DataGrid控件**: DataGrid是ASP.NET Web Forms中的一个服务器控件,它能显示和编辑结构化数据,如数据库表或XML文件。在这个例子中,DataGrid被设置为可编辑模式,允许用户直接在界面上修改数据。 4. **数据...

    WPF 分页DataGrid 分页控件的实现

    这可以是一个ObservableCollection,或者你可以从数据库、XML文件或其他数据源加载数据。 2. **定义ICollectionView**:创建一个ICollectionView实例,例如使用CollectionViewSource,然后将其数据源设置为你的数据...

    DataGrid动态绑定XML文件

    在本示例中,我们将使用XML文件作为数据源来填充`DataGrid`控件。 动态绑定XML文件到`DataGrid`的步骤主要包括以下几个部分: 1. **创建XML文件**:首先,我们需要一个XML文件来存储数据。XML文件由一系列元素组成...

    WPF根据xml配置文件加载DataGrid列.zip

    首先,我们需要理解WPF中的DataGrid控件。DataGrid是用于显示和编辑表格数据的强大工具,它支持多种功能,如排序、分页、选择和编辑。在传统的实现中,我们通常通过XAML或代码-behind静态地定义DataGrid的列。然而,...

    关于在c#中如何解析XML文件,并在DataGridView中显示

    在C#编程环境中,解析XML文件并将其内容展示在DataGridView控件中是一项常见的任务,尤其在数据处理和数据显示的应用中。Visual Studio 2008是C#开发的经典平台,它提供了丰富的工具和类库来支持这样的操作。下面将...

    c# DataGrid 中绑定CoboBox控件

    在C#编程中,DataGrid控件是一种常用的数据展示组件,它可以用来显示表格形式的数据。在实际应用中,我们有时需要在DataGrid的列中添加更丰富的交互元素,比如ComboBox(下拉框)控件,这能提供用户选择特定值的能力...

    C#winform窗体应用程序使用 XML 与 DataGrid空间实现增删改查

    在C# WinForm应用开发中,XML数据存储和DataGrid控件是常用的数据管理工具。本文将深入探讨如何利用XML文件作为数据源,并通过DataGrid控件实现对数据的增、删、改、查操作。 首先,理解XML(Extensible Markup ...

    C#WPF之DataGrid用法

    ### C# WPF中DataGrid的使用详解 #### 一、引言 DataGrid是WPF框架中的一个重要控件,用于展示数据集。它提供了强大的数据绑定能力,并且支持多种数据操作,如增删改查及分页等功能。本文旨在通过实例详细讲解...

    多功能DataGrid(C#)

    1. **DataGrid控件基础**: - `DataGrid`控件是Windows Forms的一部分,用于显示来自数据源的数据。它可以与各种数据源(如数据库、数组或数据集)绑定。 - 它提供了诸如排序、选择和编辑记录等交互功能,使用户...

    c# WPF DataGrid 底部汇总行合计

    在C# WPF环境中,DataGrid控件是一个非常强大的数据展示工具,它可以用来显示和编辑表格数据。在处理大量数据时,我们经常需要在底部添加一个汇总行来展示各项数值的总计,这在商业应用中尤其常见。本篇文章将详细...

    C#实现改变DataGrid某一行和单元格颜色的方法

    在C#中,改变DataGrid的行和单元格颜色通常涉及到对WPF的DataGrid控件的操作,包括数据源的绑定、行和单元格的获取以及样式设置。以下是一个详细的步骤来实现这一功能: 1. **添加DataGrid控件**: 在XAML文件中,...

    silverlight datagrid控件动画

    1. **数据绑定**:DataGrid控件可以轻松地与各种数据源绑定,如ObservableCollection、List或XML数据。通过设置ItemsSource属性,DataGrid会自动根据数据源生成相应的行和列。 2. **列自定义**:你可以自定义...

    WPF_c#Model生成/读取XML.zip

    反之,读取XML后填充到ListView或DataGrid控件中显示。 3. **WPF集成** - 使用MVVM模式:为了保持UI和业务逻辑的分离,可以采用MVVM(Model-View-ViewModel)设计模式。创建一个ViewModel类,其中包含生成和读取...

    C#读取XML文件并显示在DataGrid组件中

    摘要:C#源码,文件操作,读取XML,DataGrid C#读取XML文件并将其内容显示在DataGrid...可以学习一下如何使用C#读取XML中的节点数据,并将数据内容捆绑在DataGrid列表控件中,本例虽然简单,但在C#应用中是相当广泛的。

    【 将DBF,XLS,XML,MDB文件导入C#DataGrid的方法 】 (2).pdf

    标题所提到的"【将DBF,XLS,XML,MDB文件导入C#DataGrid的方法】"是一个关于在C#编程环境中,如何将不同类型的文件数据(如DBF、XLS、XML和MDB)加载到DataGrid控件中的技术问题。DataGrid是.NET Framework中用于显示...

    C# WPF DataGrid行拖拽顺序交换

    在C# WPF环境中,DataGrid控件是一个非常强大的数据展示和编辑工具,它允许用户以表格形式查看和操作数据。在开发过程中,有时我们需要实现一个功能,即允许用户通过拖拽行来改变DataGrid中数据的显示顺序。这个功能...

    【 将DBF,XLS,XML,MDB文件导入C#DataGrid的方法 】 (2).docx

    在C#编程中,将不同类型的文件如DBF(dBase格式)、XLS(Excel文件)、XML和MDB(Access数据库)导入到DataGrid控件中是常见的数据操作需求。以下内容详细介绍了如何实现这一功能。 首先,我们创建一个名为`...

Global site tag (gtag.js) - Google Analytics