2012年6月13日 星期三

{C#} GridView 欄位值某條件改變字色

當Gridview中資料符合某資料時,帶出的值變字色

在Gridview OnRowDataBound事件下,當值小於0,則變紅色字體(系統設定之紅色)


if(float.Parse(e.Row.Cells[i].Text)<0)
{
    e.Row.Cells[i].ForeColor = System.Drawing.Color.Red;
}

附:改變其值

if (e.Row.Cells[6].Text == "-1")
    e.Row.Cells[6].Text = "No Forecast";

參考資斗:
http://www.blueshop.com.tw/board/show.asp?subcde=BRD200610031156181Y8