實(shí)例講解動(dòng)態(tài)加載gridview中的行及其樣式

字號(hào):


    代碼如下:
    protected void gvSuperAdminSeeInfo_RowDataBound(object sender, GridViewRowEventArgs e)
    {
    if (e.Row.RowType != DataControlRowType.DataRow)//判斷是否是數(shù)據(jù)行
    {
    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'");
    }
    }