<完全なテキストストリームオブジェクトリファレンス
Writeメソッドは、テキストストリームファイルに指定されたテキストを書き込みます。
Note:各文字列の間にスペースや改行付きテキストストリームファイルにこのメソッド書き込みテキストを。
構文
TextStreamObject.Write(text)
パラメーター | 説明 |
---|---|
text | 必須。 テキストファイルに書き込みます |
例
<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("c:\test.txt",true)
f.write("Hello World!")
f.write("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?
<完全なテキストストリームオブジェクトリファレンス