黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

ASP WriteBlankLines 方法

asp writeblanklines 方法

textstream 對(duì)象參考手冊(cè) 完整的 textstream 對(duì)象參考手冊(cè)

writeblanklines 方法向 textstream 文件寫(xiě)入指定數(shù)目的新行字符。

語(yǔ)法

textstreamobject.writeblanklines(numlines)

參數(shù) 描述
numlines 必需的。要寫(xiě)入文件的新行字符的數(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 對(duì)象參考手冊(cè) 完整的 textstream 對(duì)象參考手冊(cè)
相關(guān)文章