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);
                }
            }
		}

  

上一篇:Linux管道符


下一篇:YII2.0日志