[求助]时间函数同步问题!
谁能告诉下
Time now is <%= now%><br />
<% if Time >=# 00:00:00# and Time <=# 12:00:00# then
Response.Write("<br>Hello!Goodmorning!")
else
Response.Write("<br>Hello!Goodafternoon!")
end if
%>
<%
dim ho,mi,se
ho=DatePart("h",now)
mi=DatePart("m",now)
se=DatePart("s",now)
%>
<%= ho%>时<%= mi%>分<%= se%>秒
的运行结果是
Time now is 2007-7-26 下午 11:40:20
Hello!Goodafternoon!23时7分20秒
是为什么呢?两个函数有什么区别吗 新手请教
[此贴子已经被作者于2007-7-27 10:27:56编辑过]