案例:ASP/ADO/VBScript案例     状态:不可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
<%
4
dim h
5
h=hour(now())
6
7
response.write("<p>" & now())
8
response.write(" (Beijing Time) </p>")
9
If h<12 then
10
   response.write("Good Morning!")
11
else
12
   response.write("Good day!")
13
end if
14
%>
15
</body>
16
</html>