在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
知识点及实例 复制代码 代码如下: protected void gvSuperAdminSeeInfo_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType != DataControlRowType.DataRow)//判断是否是数据行 { return; } e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='#ffffcf'"); if (e.Row.RowIndex % 2 == 0) { e.Row.CssClass = "gvSuperAdminSeeInfoORow"; e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='#fff'"); } else { e.Row.CssClass = "gvSuperAdminSeeInfoJRow"; e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='#f5f5f5'"); } } |
请发表评论