欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

信息发布中的判断过期和有效期的东西

程序员文章站 2023-11-17 20:36:46
复制代码 代码如下: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