最新的Web开发教程
 

ASP WriteBlankLines方法


<完整文本流对象参考

该WriteBlankLines方法写入新行字符的指定数字的文本流文件。

句法

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
%>

The file test.txt will look like this after executing the code above:

Hello World!


How are you today?

<完整文本流对象参考