将数据从gridview保存到xml文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将数据从gridview保存到xml文件相关的知识,希望对你有一定的参考价值。
this code will show you how to save data from gridview to xml file
Protected Sub GridView1_RowCommand(sender As Object, e As GridViewCommandEventArgs) If e.CommandName = "save" Then Dim st As String = Server.MapPath("emp.xml") Dim ds As New DataSet() ds.ReadXml(st) Dim r As DataRow = ds.Tables(0).NewRow() r(0) = Convert.ToInt32(DirectCast(GridView1.FooterRow.FindControl("TextBox1"), TextBox).Text) r(1) = DirectCast(GridView1.FooterRow.FindControl("TextBox3"), TextBox).Text r(2) = DirectCast(GridView1.FooterRow.FindControl("TextBox5"), TextBox).Text r(3) = Convert.ToInt32(DirectCast(GridView1.FooterRow.FindControl("TextBox7"), TextBox).Text) ds.Tables(0).Rows.Add(r) ds.WriteXml(st) getxml() End If End Sub
以上是关于将数据从gridview保存到xml文件的主要内容,如果未能解决你的问题,请参考以下文章
将 XML 文件打开到数据网格视图算法中,数据表不支持从 xml 进行模式推断