<%
if time()<#12:00:00# and time()<=#00:00:00# then
response.Write("早上好")
Else if time()<#19:00:00# And time()>=#12:00:00# then
response.Write("下午好")
else
response.Write("晚上好")
end if
end if
%>
以上是正确的写法
time()现在你系统的时间
然后if<条件> then
执行 A
esle
执行 B
end if
大致意思是,如果条件成立就执行A,如果不成立就执行B
就是判断你现在的时间,属于什么时候,然后输出显示。