Version: 2.0
Closes a currently open TextStream file.
This method is used to close a currently open TextStream file.
<%
Dim filesys, testfile
Set filesys = CreateObject("Scripting.FileSystemObject")
Set testfile= filesys.CreateTextFile("c:\somefile.txt", True)
testfile.WriteLine("Your text goes here.")
testfile.Close
%>