上記の理由と時間を表示するグリッドビューがあります。
私がやりたいことは次のとおりです。
時間になったときに赤色を表示するには
BETWEEN 12:00:00 PM and 12:59:59 PM AND is Beginning of Day
時間が経過したときに緑色を表示するには
BETWEEN 13:00:00 PM and 13:59:59 PM AND is LUNCH
列REASONで機能しています。
以下は私のコードです。注: e.Row.Cells[4] は列の理由、e.Row.Cells[5] は列の時間です。
protected void GridViewEmployee_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
//Works
if (e.Row.Cells[4].Text == "Break")
{
e.Row.Cells[4].BackColor = Color.Red;
}
//Doesn't Work
//if (e.Row.Cells[4].Text == "Beginning Of Day" && e.Row.Cells[5].Text > " 12:00:00 PM " && e.Row.Cells[5].Text < "12:59:59 PM")
//{
// e.Row.Cells[4].BackColor = Color.Red;
//}
}
}