本文介绍了如何从Dataset获取第二行的第一行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
GridView1.DataSource = ds.Tables [1] .Rows [0];
GridView1.DataSource = ds.Tables[1].Rows[0];
推荐答案
GridView1.Rows.Add();
GridView1.Rows[0]= ds.Tables[1].Rows[0];
DataTable dtBind = ds.Tables[1].Clone();
dtBind.ImportRow(ds.Tables[1].Rows[0]);
GridView1.DataSource = dtBind;
GridView1.DataBind();
这篇关于如何从Dataset获取第二行的第一行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!