<完全なテキストストリームオブジェクトリファレンス
Closeメソッドは、オープンテキストストリームのファイルを閉じます。
構文
TextStreamObject.Close
例
<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("c:\test.txt",true)
f.WriteLine("Hello World!")
f.Close
set f=nothing
set fs=nothing
%>
<完全なテキストストリームオブジェクトリファレンス