asp中response.wrire是如何使用啊,下面是我写的一个小例子 为什么提示 类型不匹配: '[string: ""]' 我是按照书上写的
<body>
<h1>欢迎访问我的主页</h1>
<%
totay=Date()
ttime=Time()
if left(theTime,2)>12 then
  response.Write"下午好"
else 
   response.Write"下午好"
  end if
%>
今天是 <%=totay%>,时间<% =ttime%></body>