怎么用asp.net中gridview 对下面xml数据进行增删改查(c# vs2010 3.0)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么用asp.net中gridview 对下面xml数据进行增删改查(c# vs2010 3.0)相关的知识,希望对你有一定的参考价值。
<?xml version="1.0" encoding="utf-8"?>
<Students>
<Student Name="贾磊">
<Score Name="技能">80</Score>
<Score Name="理论">86</Score>
<Score Name="素质">92</Score>
</Student>
<Student Name="王方圆">
<Score Name="技能">90</Score>
<Score Name="理论">86</Score>
<Score Name="素质">80</Score>
</Student>
<Student Name="周桥">
<Score Name="技能">89</Score>
<Score Name="理论">80</Score>
<Score Name="素质">78</Score>
</Student>
<Student Name="石为民">
<Score Name="技能">79</Score>
<Score Name="理论">90</Score>
<Score Name="素质">80</Score>
</Student>
<Student Name="王槟">
<Score Name="技能">70</Score>
<Score Name="理论">80</Score>
<Score Name="素质">88</Score>
</Student>
<Student Name="刘峰茂">
<Score Name="技能">58</Score>
<Score Name="理论">80</Score>
<Score Name="素质">70</Score>
</Student>
</Students>
。net4.0可以使用linqtoxml来进行相关操作 参考技术C 读取显示在GRIDVIEW,对需要的操作跟操作数据库其实原理差不多
有专门的类
以上是关于怎么用asp.net中gridview 对下面xml数据进行增删改查(c# vs2010 3.0)的主要内容,如果未能解决你的问题,请参考以下文章
asp.net VS2008 GridView 里面怎么排序
asp.net中GridView怎样进行分页,编辑,删除操作
Asp.net的GridView控件的OnRowDeleting事件怎么使用?VS2005.net,C#,SQL 2005
用asp.net 把GridView中的所有数据导出到Excel中没问题,根据条件查询的信息导出到Excel中 怎么整???