C#序号

 OnRowCreated="gridViewCorrection_RowCreated"
<asp:BoundField HeaderText="序号" />

   protected void gridViewCorrection_RowCreated(object sender, GridViewRowEventArgs e)
        {
          if (e.Row.RowIndex > -1)
            {
                if (dtReceivables != null && dtReceivables.Rows.Count > 0)
                {

                    e.Row.Cells[0].Text = Convert.ToString(e.Row.RowIndex + 1);
                }
            }
		}

  

posted @ 2021-09-05 20:22  刘贵庆  阅读(62)  评论(0编辑  收藏  举报