protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            string str = e.Row.Cells[1].Text;
           
            e.Row.Cells[1].Attributes.Add("Title", str);                    
           
        }
    }

相关文章:

  • 2022-12-23
  • 2022-02-19
  • 2022-12-23
  • 2021-04-13
  • 2021-06-08
  • 2021-05-18
猜你喜欢
  • 2022-02-06
  • 2021-12-24
  • 2021-06-30
  • 2021-12-31
  • 2022-01-09
  • 2021-11-02
相关资源
相似解决方案