ASP WriteBlankLines 方法
定义和用法
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?