GridView 비헤이비어 특정 색상 설정

1516 단어 GridView
ASP.NET는 Updated가 비어 있는지 여부를 판단하기 위해 GridView의 행에 특정 색상을 설정할 수 있습니다.
 
 1     protected void GridViewSalesGroup_RowDataBound(Object sender, GridViewRowEventArgs e)
2 {
3 if (e.Row.RowType == DataControlRowType.DataRow)
4 {
5 string updatedDate = (string)DataBinder.Eval(e.Row.DataItem, "Updated");
6 if (updatedDate == "")
7 {
8 e.Row.BackColor = System.Drawing.Color.LightPink;
9 e.Row.ForeColor = System.Drawing.Color.Maroon;
10 }
11 }
12
13 }

좋은 웹페이지 즐겨찾기