当前位置: 代码迷 >> ASP >> 一个关于文件读写的有关问题,
  详细解决方案

一个关于文件读写的有关问题,

热度:122   发布时间:2012-02-20 21:18:25.0
一个关于文件读写的问题,急
<HTML>
<HEAD> age   count </head>
<body   bgcolor= "#ffffff ">
<%

Set   fs=CreateObject( "Scripting.FileSystemObject ")
Set   thisfile=fs.OpenTextFile(server.mappath( "/bbs/test/create.txt "),1)
counter=0
do   while   not   thisfile.AtEndOfStream
counter=counter+1
thisline=thisfile.readline
response.write   thisline& " <br> "
loop
thsifile.Close
set   thisfile=nothing
set   fs=nothing
%>

</body>
</HTML>

该文件已经存在,上述代码执行就出错.
请大侠帮助!!

------解决方案--------------------
thsifile.Close
set thisfile=nothing

thisfile.close
  相关解决方案