网站中的上中下午这个时间怎么弄的
就是当我们进入什么网站啊什么的,当进入后,系统会根据进入的记录分别显示上午好啊下午好啊晚上好啊,这个是怎么弄的???请各位大虾赐教!!!
<%
Dim theHour
theHour=Hour(Now()) ' 得到的是[bo]服务器[/bo]时间的[bo]小时[/bo]部分。
Select Case True
Case theHour<8
Response.Write "AAA"
Case theHour<12
Response.Write "BBB"
Case theHour<18
Response.Write "CCC"
Case Else
Response.Write "DDD"
End Select
%>
[[it] 本帖最后由 multiple1902 于 2008-9-26 22:33 编辑 [/it]]