GridView自动编号
1protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
2 {
3 if (e.Row.RowIndex != -1)
4 {
5 int id = e.Row.RowIndex + 1;
6 e.Row.Cells[0].Text = id.ToString();
7 }
8 }
在GridView中增加了一个自动编号列2 {
3 if (e.Row.RowIndex != -1)
4 {
5 int id = e.Row.RowIndex + 1;
6 e.Row.Cells[0].Text = id.ToString();
7 }
8 }
可以详细知道当前页一共有多少记录。