ASP WriteBlankLines 方法

asp writeblanklines 方法

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

writeblanklines 方法向 textstream 文件写入指定数目的新行字符。

语法

textstreamobject.writeblanklines(numlines)

参数 描述
numlines 必需的。要写入文件的新行字符的数目。

实例

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

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

hello world!


how are you today?

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