ASP WriteBlankLines 方法
asp writeblanklines 方法
完整的 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?
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 对象参考手册
相关文章
- ASP Cookies
- ASP Session 对象
- ASP Global.asa
- ASP Drive 对象
- ASP Content Linking
- AJAX 简介
- ASP Skip 方法
- ASP WriteBlankLines 方法
- ASP Type 属性
- ASP OpenAsTextStream 方法
- ASP IsRootFolder 属性
- ASP CreateTextFile 方法
- ASP RemoveAll 方法
- ASP Buffer 属性
- ASP Clear 方法
- ASP End 方法
- ASP Contents.Remove 方法
- ASP Execute 方法
- ASP CopyFile 方法
- ASP CopyFolder 方法