Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to change a particular row color of gridview based on some condition, i am using ASP.NET with c#.Thank you.

share|improve this question

5 Answers

up vote 4 down vote accepted
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
    e.Row.Attributes.Add("style", "cursor:help;");
    if (e.Row.RowType == DataControlRowType.DataRow && e.Row.RowState == DataControlRowState.Alternate)
    { 
        if (e.Row.RowType == DataControlRowType.DataRow)
        {                
            e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='orange'");
            e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='#E56E94'");
            e.Row.BackColor = Color.FromName("#E56E94");                
        }           
    }
    else
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='orange'");
            e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='gray'");
            e.Row.BackColor = Color.FromName("gray");                
        }

        //e.Row.Cells[0].BackColor = Color.FromName("gray");
        //e.Row.Cells[1].BackColor = Color.FromName("gray");
        //e.Row.Cells[2].BackColor = Color.FromName("gray");
        //e.Row.Cells[3].BackColor = Color.FromName("gray");
        //e.Row.Cells[4].BackColor = Color.FromName("gray");
        //e.Row.BorderWidth = 2;
        //e.Row.BorderColor = Color.FromName("#43C6DB");
    }
}
share|improve this answer

Create GridView1_RowDataBound event for your GridView.

if (e.Row.RowType = DataControlRowType.DataRow)
{
    //Check your condition here
    If(Condition True)
    {
        e.Row.BackColor = Drawing.Color.Red // This will make row back color red
    }
}
share|improve this answer
protected void DrugGridView_RowDataBound(object sender, GridViewRowEventArgs e)

{
    // To check condition on integer value
    if (Convert.ToInt16(DataBinder.Eval(e.Row.DataItem, "Dosage")) == 50)
    {
      e.Row.BackColor = System.Drawing.Color.Cyan;
    }
}
share|improve this answer
\\loop throgh all rows of the grid view  

if (GridView1.Rows[i - 1].Cells[4].Text.ToString() == "value1")
{
   GridView1.Rows[i - 1].ForeColor = Color.Black;
}
else if (GridView1.Rows[i - 1].Cells[4].Text.ToString() == "value2")
{
   GridView1.Rows[i - 1].ForeColor = Color.Blue;
}
else if (GridView1.Rows[i - 1].Cells[4].Text.ToString() == "value3")
{
   GridView1.Rows[i - 1].ForeColor = Color.Red;
}
else if (GridView1.Rows[i - 1].Cells[4].Text.ToString() == "value4")
{
   GridView1.Rows[i - 1].ForeColor = Color.Green;
}
share|improve this answer

thanks for the reply but i dont want to create an event i just want to show my last row of gridview OR Datatable in different color here is my code

    GridView gvcontents = new GridView();

    gvcontents.HeaderStyle.ForeColor = System.Drawing.Color.Red;

    gvcontents.HeaderStyle.HorizontalAlign = System.Web.UI.WebControls.HorizontalAlign.Center;

    gvcontents.RowStyle.HorizontalAlign = System.Web.UI.WebControls.HorizontalAlign.Center;

    gvcontents.DataSource = dtcontents;

    gvcontents.HeaderStyle.Font.Bold = true;

    gvcontents.SelectedRowStyle.BorderColor = Color.White;

    int r = gvcontents.Rows.Count;        
    //gvcontents.Rows[r].BackColor = System.Drawing.Color.Green;
    //gvcontents.HeaderRow.BorderStyle = BorderStyle.Solid;

    gvcontents.Rows[r - 1].Cells[3].Font.Bold = true;
    gvcontents.GridLines = GridLines.None;

    gvcontents.DataBind();   
share|improve this answer
did you succeed? Or in other words: is this an answer? – kleopatra Feb 25 at 11:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.