0
Hi Kalyan,
You may try below code whether it is paging or not once row will bind it will count...
- int totalRow= 0;
- protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
- {
- if (e.Row.RowType == DataControlRowType.DataRow)
- {
- totalRow+=1;
- }
-
- }