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

ASP WriteLine 方法

asp writeline 方法

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

writeline 方法向 textstream 文件寫入一段指定的文本以及一個新行字符。

語法

textstreamobject.writeline(text)

參數 描述
text 可選的。需要寫入文件的文本。如果您不規(guī)定此參數,那么一個新行字符會被寫入文件。

實例

<%
dim fs,f
set fs=server.createobject("scripting.filesystemobject")
set f=fs.createtextfile("c:\test.txt",true)
f.writeline("hello world!")
f.writeline("how are you today?")
f.writeline("goodbye!")
f.close
set f=nothing
set fs=nothing
%>

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

hello world!
how are you today?
goodbye!

textstream 對象參考手冊 完整的 textstream 對象參考手冊
相關文章