求助ASP的简单问题
以下一段代码 编译出来的时候 在站点里浏览报错 在一般的浏览器里又什么都不显示 报错的时候是显示 第8行错 但是不知道是哪错了 请指教<html>
<head>
<title>练习站点</title>
</head>
<body>
<%
if hour(now) = 0 then response.write "现在是午夜."
end if
if hour(now) = 12 then response.write "现在是中午."
end if
if (hour(now) >=1) and (hour(now)<=11) then response.write "上午" & hour(now) & "点."
end if
if (hour(now) >=13) and (hour(now)<=23) then response.write "下午" & hour(now) -12 & "点."
end if
%>
</body>
</html>