为什么这段程序不能运行?
这段程序不能运行,还有”if left(theTime,2)>12“它的用法是什么?<!--File Name:time.asp -->
<%@Language=VBScript%>
<html>
<head>
<title>示例 1 </title>
</head>
<body>
<h1>欢迎访问我的主页</h1>
<%
totay=Date()
ttime=Time()
if left(theTime,2)>12 then
response.write"<h3>下午好!</h3>"
else
response.write"<h3>下午好!</h3>"
end if
%>
今天是<%=totay %>时间<%=theTime %>
</body>
</html>