ASP Write 方法

asp write 方法

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

write 方法向 textstream 文件写入指定的文本。

注意:此方法向 textstream 文件写入的文本在每个字符串之间不带有空格或换行。

语法

textstreamobject.write(text)

参数 描述
text 必需的。写入文件的文本。

实例

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

在执行上面的代码后,文件 test.txt 如下所示:

hello world!how are you today?

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