1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16:
público GridView2_DataBound vago (remetente do objeto, GridViewRowEventArgs e) { se (== DataControlRowType.DataRow de e.Row.RowType) { currentRowDate DateTime = DateTime.Now; // seu valor de defeito DateTime.TryParse (e.Row.Cells [0]. Texto, para fora currentRowDate); se (currentRowDate > DateTime.Now.AddMonths (- 3)) { e.Row.Cells [0]. Estilo [“fundo-cor”] = “vermelho”; } mais se (currentRowDate > DateTime.Now.AddMonths (- 6)) { e.Row.Cells [0]. Estilo [“fundo-cor”] = “amarelo”; } } }