<Complete TextStream Object Reference
Il metodo Close si chiude un file TextStream aperto.
Sintassi
TextStreamObject.Close
Esempio
<%
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
%>
<Complete TextStream Object Reference