将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的方法】相关文章:
★ asp.net Repeater取得CheckBox选中的某行某个值的c#写法
★ asp.net下Request.QueryString取不到值的解决方法