[求助]大家帮忙看看~在线等~
请教大家一下,这是个什么错误?偶郁闷好久
Microsoft VBScript 编译器错误 错误 '800a03f6' 缺少 'End' /iisHelp/common/500-100.asp,行242 Microsoft VBScript 运行时错误 错误 '800a0036' 错误的文件模式 /example/study/counter/counter.asp,行15 具体代码如下,行15就是那个“visitors=thisfile.readline”
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<%
dim visitors
set mfo=server.CreateObject("scripting.filesystemobject")
set thisfile=mfo.opentextfile(server.MapPath("counter.txt"),8,true)
visitors=thisfile.readline
thisfile.close
vistors=visitors+1
response.Write("本站点被浏览"&visitors&"次")
set out=fs.creattextfile(server.MapPath("counter.txt"))
out.writeline(visitors)
out.close
set fs=nothing
%>
</body>
</html>
[此贴子已经被作者于2005-1-9 20:54:44编辑过]