手机
当前位置:查字典教程网 >编程开发 >asp.net教程 >将DataTable中的一行复制到另一个DataTable的方法
将DataTable中的一行复制到另一个DataTable的方法
摘要:将DataTable中的一行复制到另一个DataTable方法1:DataRowdr=ds2.Tables[0].NewRow();dr.I...

将DataTable中的一行复制到另一个DataTable

方法1:

DataRowdr=ds2.Tables[0].NewRow();

dr.ItemArray=ds1.Tables[0].Rows[i].ItemArray;

ds2.Tables[0].Rows.Add(dr);

方法2:

ds2.Tables[0].ImportRow(ds1.Tables[0].Rows[i]);

【将DataTable中的一行复制到另一个DataTable的方法】相关文章:

c#中实现文件拖放打开的方法

asp.net中List的使用方法

asp.net Repeater取得CheckBox选中的某行某个值的c#写法

asp.net GridView 中增加记录的方法

asp.net 日期函数 某月的第一天和最后一天的日期

asp.net下Request.QueryString取不到值的解决方法

asp.net下出现其中的组件“访问被拒绝”的解决方法

asp.net 时间类 一周的周一和周末的日期

利用Timer在ASP.NET中实现计划任务的方法

asp.net 备份和恢复数据库的方法

精品推荐
分类导航