Response.Write("<font>" & Format_Time(Rs("AddTime"),TimeFormat) & "</font>")
这个语句怎加上判断让今天更新的数据日期变成红色过了今天就恢复成黑色
高手帮忙!
Response.Write("<font>" & Format_Time(Rs("AddTime"),TimeFormat) & "</font>")
这个语句怎加上判断让今天更新的数据日期变成红色过了今天就恢复成黑色
高手帮忙!
或许应该这样的吧,你的情况不太了解,参考下了。
<%
dim addtime
addtime=Format_Time(Rs("AddTime"),TimeFormat)
if year(addtime)&"-"&month(addtime)&"-"&day(addtime)=date() then
color="#FF0000"
else
color="#000000"
end if
Response.Write("<font color='"&color&"'>" & addtime & "</font>")
%>