zoukankan      html  css  js  c++  java
  • 为GridView表格添加光标提示

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

  • 相关阅读:
    053-157
    053-496
    053-128
    053-167
    053-250
    053-674
    离职申请
    日记


  • 原文地址:https://www.cnblogs.com/wenming205/p/1315161.html
Copyright © 2011-2022 走看看