有关时间加减的问题
比如我现在有三个时间变量,strat_time,end_time,now_time. 时间格式为yyyy-mm-dd 如果now_time大于等于strat_time 并且 小于等于end_time 就显示“数据库中有此记录”
否则就使now_time=now_time加7天
用程序该如何表示?
If now_time >=strat_time and now_time<=end_time Then
Response.Write "数据库中有此记录"
Else
now_time=DateAdd("d",7,now_time)
End if
你试试看吧!