offentlig utan laga kraft GridView2_DataBound (anmärka avsändaren, GridViewRowEventArgs e),
{
om (e.Row.RowType-== DataControlRowType.DataRow)
{
DateTime currentRowDate = DateTime.Now; // som din standard värderar
DateTime.TryParse (e.Row.Cells [0]. Text, ut currentRowDate);
om (currentRowDate > DateTime.Now.AddMonths (- 3))
{
e.Row.Cells [0]. Utforma [”bakgrund-färga”], = ”rött”;
}
annars, om (currentRowDate > DateTime.Now.AddMonths (- 6))
{
e.Row.Cells [0]. Utforma [”bakgrund-färga”], = ”gulingen”;
}
}
}
|