if hour(now())>7 and hour(now)j<12 then
response.write("早上好")
elseif hour(now())>12 and hour(now)j<17 then
response,write("下午好")
elseif hour(now())>17 and hour(now)j<24 then
response,write("晚上好")
end if
<%
dim timenow:timenow=Hour(now())
if timenow>0 and timenow<7 then response.write "深更半夜在做什么?"
if timenow>6 and timenow<11 then response.write "上午好?"
if timenow>10 and timenow<14 then response.write "吃了没?"
if timenow>13 and timenow<18 then response.write "努力工作?"
if timenow>17 and timenow<20 then response.write "赶紧回家哦?"
if timenow>19 and timenow<23 then response.write "晚上好!"
if timenow>22 and timenow<24 then response.write "该睡觉了!"
%>