|
METHOD:
TextStream.Close
object.Close
This method is used to close a currently open TextStream file.
Code:
<% Dim filesys, testfile Set filesys =
CreateObject("Scripting.FileSystemObject") Set testfile=
filesys.CreateTextFile("c:\somefile.txt", True)
testfile.WriteLine("Your text goes here.")
testfile.Close
%>
Copyright 1999 by Infinite Software Solutions, Inc.
Trademark Information
|