1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16:
openbare nietige GridView2_DataBound (de afzender van Objecten, GridViewRowEventArgs e) { als (e.Row.RowType == DataControlRowType.DataRow) { DateTime currentRowDate = DateTime.Now; // uw standaardwaarde DateTime.TryParse (e.Row.Cells [0]. Tekst, uit currentRowDate); als (currentRowDate > DateTime.Now.AddMonths (- 3)) { e.Row.Cells [0]. Stijl [„achtergrond-kleur“] = „rood“; } als anders (currentRowDate > DateTime.Now.AddMonths (- 6)) { e.Row.Cells [0]. Stijl [„achtergrond-kleur“] = „geel“; } } }