信息发布中的判断过期和有效期的东西
程序员文章站
2022-07-12 08:19:23
复制代码 代码如下:yxq=cdate(rdsinfo("infodate")) //得到有效期 fbsj=formattime(rdsinfo("c...
复制代码 代码如下:
yxq=cdate(rdsinfo("infodate")) //得到有效期
fbsj=formattime(rdsinfo("createtime"),8) //发布时间
dqsj=dateadd( "d" ,yxq ,fbsj) //到期时间
sysj=datediff ("d",date(),dqsj) //判断剩余时间 或是否过期
if sysj<0 then
sysj="<font color=#808080>过期</font>"
else
sysj="<font color=#ff0000>"&sysj&"</font> 天"
end if
fbsj=formattime(rdsinfo("createtime"),8) //发布时间
dqsj=dateadd( "d" ,yxq ,fbsj) //到期时间
sysj=datediff ("d",date(),dqsj) //判断剩余时间 或是否过期
if sysj<0 then
sysj="<font color=#808080>过期</font>"
else
sysj="<font color=#ff0000>"&sysj&"</font> 天"
end if