C# GridView 给某行或某列绑定点击事件和鼠标事件

 protected void GridViewEx1_RowDataBound(object sender, GridViewRowEventArgs e)
   {
       if (e.Row.RowType == DataControlRowType.DataRow)//判断单击行是否为数据行  
         {  
              DataRowView row = (DataRowView)e.Row.DataItem;  
              e.Row.ID = GridViewEx1.DataKeys[e.Row.RowIndex]["ID"].ToString();//ID为唯一能够标识一条记录的字段  
              if (e.Row.ID != null && row != null)  
              {  
                 e.Row.Cells[1].Attributes.Add("ondblclick", "window.open('ParhelionRestEdittPage.aspx?index=" + (e.Row.RowIndex + 1).ToString() + "&id=" + e.Row.Cells[0].Text.Trim() + "',null,'width=400,height=108,left=300,top=200');");

                 e.Row.Cells[1].Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#F89E14',this.style.cursor='pointer';");  
                  //鼠标事件 this.style.backgroundColor='#F89E14' 列背景色  this.style.cursor='pointer' 鼠标放上去样式  
                 e.Row.Cells[1].Attributes.Add("onmouseout", "this.style.backgroundColor='';");  
              }  
           }  
        }
    }

  

posted @ 2018-01-31 15:22  每天进步多一点  阅读(4810)  评论(0编辑  收藏  举报