当数据库中某字段的某一条记录为空时,在页面显示这个字段的小表格的背景为红色,不为空时显示为蓝色?
请教各位高手,这段程序怎么写呀?如有人会的话我可以付报酬.
QQ:78596219
加个判断语句,<%if isnull(rs("字段")) then response.write("<td bgcolor=red>"&rs("字段")&"</td>")elseresponse.write("<td bgcolor=blue>"&rs("字段")&"</td>")end if%>