<อ้างอิง TextStream วัตถุที่สมบูรณ์
WriteLine วิธีเขียนข้อความที่ระบุและตัวละครใหม่สายไปยังแฟ้ม TextStream
วากยสัมพันธ์
TextStreamObject.WriteLine(text)
พารามิเตอร์ | ลักษณะ |
---|---|
text | ไม่จำเป็น. ข้อความในการเขียนไปยังแฟ้ม ถ้าคุณไม่ได้ระบุพารามิเตอร์นี้ตัวละครใหม่เส้นจะถูกเขียนไปยังแฟ้ม |
ตัวอย่าง
<%
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
%>
The file test.txt will look like this after executing the code above:
Hello World!
How are you today?
Goodbye!
<อ้างอิง TextStream วัตถุที่สมบูรณ์