ASP判断当前时间
我是个新手,想问一下ASP判断时间的问题:如果当前时间为7点-23点59分,分钟为0-29分钟,则写:开放。如果当前时间为7点-23点59分,分钟为30-59分钟,则写:...
我是个新手,想问一下ASP判断时间的问题:
如果当前时间为7点-23点59分,分钟为0-29分钟,则写:开放。
如果当前时间为7点-23点59分,分钟为30-59分钟,则写:30分开放。
如果当前时间为24点-6点59分,则写:通宵开放。
这个判断代码应该怎么写,请高手指点 展开
如果当前时间为7点-23点59分,分钟为0-29分钟,则写:开放。
如果当前时间为7点-23点59分,分钟为30-59分钟,则写:30分开放。
如果当前时间为24点-6点59分,则写:通宵开放。
这个判断代码应该怎么写,请高手指点 展开
1个回答
展开全部
if time()>=#07:00:00# and time()=<#23:59:00# then '判断是否在设置的时间范围内
if minute(time())=<29 then '判断当前分钟是否小于或等于29
response.write "开放"
else '由于是不间断,所以直否则就行
response.write "30分开放"
end if
else '这里也是全天候,直接否则就行
response.write "通宵开放"
end if
if minute(time())=<29 then '判断当前分钟是否小于或等于29
response.write "开放"
else '由于是不间断,所以直否则就行
response.write "30分开放"
end if
else '这里也是全天候,直接否则就行
response.write "通宵开放"
end if
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询