ASP WriteLine 메서드


❮ 완전한 TextStream 객체 참조

WriteLine 메서드는 지정된 텍스트와 줄 바꿈 문자를 TextStream 파일에 씁니다.

통사론

TextStreamObject.WriteLine(text)

Parameter Description
text Optional. The text to write to the file. If you do not specify this parameter, a new-line character will be written to the file

예시

<%
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 객체 참조