if (!IsPostBack)
{
databind();
for (int i = 0; i < this.GridView1.Rows.Count - 1; i++)
{
Label Label1 = this.GridView1.Rows[i].FindControl("Label5") as Label;
string a = Label1.Text;
if (this.GridView1.Rows[i].Cells[2].Text == a)
{
GridView1.Rows[i].BackColor = System.Drawing.Color.Red;
}
}
}
{
databind();
for (int i = 0; i < this.GridView1.Rows.Count - 1; i++)
{
Label Label1 = this.GridView1.Rows[i].FindControl("Label5") as Label;
string a = Label1.Text;
if (this.GridView1.Rows[i].Cells[2].Text == a)
{
GridView1.Rows[i].BackColor = System.Drawing.Color.Red;
}
}
}