现在的位置: 首页 > 综合 > 正文

Gridview行变颜色

2013年02月12日 ⁄ 综合 ⁄ 共 307字 ⁄ 字号 评论关闭

 protected void gvAdmin_RowDataBound(object sender, GridViewRowEventArgs e)
  {
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#dcdcdc';");
        e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor= c;");
    }
  }

抱歉!评论已关闭.