我想要一个只有两个日期和时间之间出现按钮的页面。我使用了以下代码,按钮出现在正确的时间(2017年5月15日上午12:01),但随后在2017年5月19日晚上11:59之前就消失了(我相信它在9左右消失了: 2017年5月15日30至10点)。我不确定为什么,我猜测代码的日期比较部分有一些不正确的地方将时间解释为1000 ......否则为什么它会起作用呢?
<%
ctime = FormatDateTime(Now)
if ctime => "5/15/2017 12:01 AM" and ctime <= "5/19/2017 11:59 PM" then %>
Button HTML code
<% end if %>
下面的代码是否是正确的代码?
If (Now >= #5/15/2017 12:01 am#) And (Now <= #5/19/2017 11:59 pm#) then %>
Button HTML code
<% end if %>