最新的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?

<完整文本流對象參考