if 语句问题
<%dim dteTime
dteTime = Now()
%>
<html>
<body>
当前的系统时间是<%=dteTime%><BR>
<%
if dteTime< #12:00:00# and dteTime >= #00:00:00# then
response.write"Good morning!!!"
elseif dteTime <#19:00:00# and dteTime >= #12:00:00 then
response.write"Good afternoon!!!"
else
response.write"Good evening!!!"
end if
%>
</body>
</html>
这段代码竟然显示500错误