操作Gridview单元格

 

操作Gridview单元格

可以在GridviewRowDataBound事件中获取,参照下面的代码

  1. protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
  2.     {
  3.         if (e.Row.RowType == DataControlRowType.DataRow)
  4.         {
  5.             foreach (TableCell cell in e.Row.Cells)
  6.             {
  7.                 //单击鼠标可以将单元格中的内容复制到剪切板
  8.                 cell.Attributes.Add("onclick""window.clipboardData.setData('Text', this.innerText);");
  9.                 //鼠标移入可以设置单元格字体颜色
  10.                 cell.Attributes.Add("onmouseover""this.style.color='red'");
  11.                 //鼠标移开,取消单元格字体颜色设置
  12.                 cell.Attributes.Add("onmouseout""this.style.color=''");
  13.                 
  14.             }
  15.         }
  16.     }

你可能感兴趣的:(操作Gridview单元格)