请教一下 为什么我在记事本里写入代码后 用http 浏览 显示一片空白 什么都没有 这是怎么回事
代码如下:
<%@ LANGUAGE = VBScript %>
<html>
<title>HEHE</titile>
<body bgcolor="#FFFFFF">
<p>每个月份<p>
<%
counter=1
thismonth=month(now())
Do while counter<thismonth+1
response.write""&counter&"月份:"
response.write"___________________"&"<BR><br>"
if counter>13 then
exit do
end if
counter=counter+1
Loop
%>
</body>
</html>