Guest User

Untitled

a guest
Oct 24th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
  2. {
  3. if (e.Row.RowType == DataControlRowType.DataRow)
  4. {
  5. var CellValue = e.Row.Cells[3].Text;
  6.  
  7. if (CellValue != "Processed")
  8. {
  9. e.Row.BackColor = System.Drawing.Color.Yellow;
  10. e.Row.Cells[3].BackColor = System.Drawing.Color.Red;
  11. }
  12. }
  13. }
Add Comment
Please, Sign In to add comment