知识点及实例
复制代码 代码如下:
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'");
}
}
【实例讲解动态加载gridview中的行及其样式】相关文章:
★ 用sender的Parent获取GridView中的当前行
★ asp.net ajaxControlToolkit ValidatorCalloutExtender的简单用法
★ asp.net为网页动态添加description描述信息的方法
★ c# 调用WinRAR 实现文件压缩、文件解压WinRAR命令行参数不弹窗