1. 程式人生 > >根據行裡面的某項值判斷該行的背景色

根據行裡面的某項值判斷該行的背景色

只需在繫結函式如下即可:

protected void GV_show_RowDataBound(object sender, GridViewRowEventArgs e)
    {


        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            string str = e.Row.Cells[2].Text.Trim().ToString();
            if (e.Row.Cells[2].Text.ToString() == " ")
            {
                e.Row.BackColor = Color.DarkRed;
            }
            
        }
        


    }