且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

使用分页时如何在网格视图中获取行数总数?

更新时间:2023-11-22 19:59:46


是的,您是对的,但是您可以使用datasoure它本身来了解Gridview中将有多少条记录

像这样的
Hi ,
yes you right but u can use the datasoure it self to know how many record will be in Gridview

like this one
int countGridViewNum= ds.Tables[0].Rows.Count;



或者您可以使用此



or you can use this one

int xx = 1;
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
    xx++;
}




***的问候
M.Mitwalli




Best Regards
M.Mitwalli


嗨..贝图

为什么不获得数据表中的行总数
它将在网格视图中为您提供总行数.

还是需要1页后的行数(在第二页上填充时)

请让我们知道要求

谢谢
Hi..Betu

Why don''t you get total no of rows in datatable
it will give you total no of rows in grid view.

Or do you need the row count after 1 page(while you are suffring on the second page)

Please let us know the requirement

Thanks