----- Original Message -----
From: Scott Pouliot <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: 24 October 1999 09:34
Subject: RE: [IMail Forum] edit a text document on a web browser?


> Raymond....why use an ASP component?  Just use the built in
FileSystemObject
> to read the text file into a textarea and then delete the old file and
make
> a new one with the updated text  ;-)

Or, do this:

<%
WriteToLogFile=False
 Set objFSO=CreateObject("Scripting.FileSystemObject")
   Set objNewFile=objFSO.CreateTextFile("C:\textfiles\myfile.txt")
   Set objLogFile=objFSO.OpenTextFile("C:\textfiles\myfile.txt", 8)
   objLogFile.WriteLine("see it really is easy!")
   objLogFile.Close
WriteToLogFile=True
%>

/wiZZ

Please visit http://www.ipswitch.com/support/mailing-lists.html 
to be removed from this list.

Reply via email to