日期:2014-05-17 浏览次数:20529 次
protected void GvSubscribe_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
int tempFlowId = Convert.ToInt32(DataBinder.Eval(e.Row.DataItem, "isDeleted"));
if (tempFlowId == 1)
e.Row.BackColor =System.Drawing.Color.Blue;
else
e.Row.BackColor = System.Drawing.Color.Red;
}
}