ASP WriteBlankLines 方法

2018-09-29 12:36 更新

ASP WriteBlankLines 方法


TextStream 對象參考手冊 完整的 TextStream 對象參考手冊

WriteBlankLines 方法向 TextStream 文件寫入指定數(shù)目的新行字符。

語法

TextStreamObject.WriteBlankLines(numlines)

參數(shù) 描述
numlines 必需的。要寫入文件的新行字符的數(shù)目。

實(shí)例

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

在執(zhí)行上面的代碼后,文件 test.txt 如下所示:

Hello World!


How are you today?


TextStream 對象參考手冊 完整的 TextStream 對象參考手冊
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號