62,268
社区成员
发帖
与我相关
我的任务
分享
if (e.Row.RowType == DataControlRowType.DataRow)
{
System.Data.DataRowView drv = (System.Data.DataRowView)e.Row.DataItem;
DateTime bookingdate = Convert.ToDateTime(drv["bookingdate"]); // DataBinder.Eval(e.Row.DataItem, "bookingdate");
if (bookingdate < DateTime.Now.Date) // DateTime.Now.Day())
e.Row.BackColor = Color.Yellow;
}