ASP Close 方法

asp close 方法

textstream 对象参考手册 完整的 textstream 对象参考手册

close 方法关闭一个打开的 textstream 文件。

语法

textstreamobject.close

实例

<%
dim fs,f
set fs=server.createobject("scripting.filesystemobject")
set f=fs.createtextfile("c:\test.txt",true)
f.writeline("hello world!")
f.close
set f=nothing
set fs=nothing
%>

textstream 对象参考手册 完整的 textstream 对象参考手册
相关文章