Posted on 2011-04-16 13:34
哈希 阅读(100)
评论(0) 编辑 收藏 所属分类:
CSS 代码
损耗数为零: 蓝色 #1E90FF ->#0000FF
不为零:红色 #ff3030 ->#FF0033
审核人 审核日期不为空时候 蓝色 #1E90FF ->0000FF
contactIntoDetail.aspx
******************************************************************
string color = string.Empty;
if (!string.IsNullOrEmpty(record.AuditId) && record.AuditDate != null && record.AuditDate > DateTime.MinValue)
{
color = "#0000FF";
}
else
{
color = "black";
}
***********************************************************************************
style='color:"+color+"'
***************************************************************************************