<อ้างอิง TextStream วัตถุที่สมบูรณ์
วิธี WriteBlankLines เขียนจำนวนที่ระบุตัวละครใหม่สายไปยังแฟ้ม TextStream
วากยสัมพันธ์
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?
<อ้างอิง TextStream วัตถุที่สมบูรณ์