最新のWeb開発のチュートリアル
 

ASP WriteLineメソッド


<完全なテキストストリームオブジェクトリファレンス

WriteLineメソッドは、指定されたテキストやテキストストリームファイルに改行文字を書き込みます。

構文

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!

<完全なテキストストリームオブジェクトリファレンス