Go homepage(回首页)
Upload pictures (上传图片)
Write articles (发文字帖)

The author:(作者)归海一刀
published in(发表于) 2014/1/30 1:28:33
GridView每页添加不重新开始序号列_[Asp.Net教程]

GridView每页添加不重新开始序号列_[Asp.Net教程]


<%# Container.DataItemIndex+1 %>



每一页从1开始
protected void GV_showAll_RowDataBound(object sender, GridViewRowEventArgs e)
{

if (e.Row.RowIndex > -1)
{
e.Row.Cells[0].Text = (e.Row.RowIndex+1).ToString() ;
//或者e.Row.Cells[0].Text = e.Row.DataItemIndex;
}
}
前台模板列为空






或者


<%#Container.DisplayIndex +1%>




If you have any requirements, please contact webmaster。(如果有什么要求,请联系站长)





QQ:154298438
QQ:417480759