高分请问下,c# .net 做报表的时候 给单元格(xtsqr1 )绑定数据 一个页面显示一条数据 请各位帮帮?
code_house_info_bll hbll = new code_house_info_bll();DataSet ds = new DataSet();
ds = hbll.GetList("");
for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
{
xtsqr1.Text = ds.Tables[0].Rows[i]["build_code"].ToString();
}
这是代码,运行时只显示数据表里最后一条记录,问题出在哪里啊
表里有两条记录 我的意思是让他分为两页显示