gridview
我在gridview中添加一列表:序号(没有进行任何数据上的绑定),然后在其代码中进行如下设置,但是我想获取这列的序号,应该怎么进行设置???protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowIndex >= 0)
{
e.Row.Cells[0].Text = Convert.ToString(e.Row.DataItemIndex + 1);
}
}