Sure you can do that, here is the sample script Dim( f, number ) Dim( buffer, string) WebGetFile( "http://home.microsoft.com/", "c:\\temp\\temp2.txt" ) FileReadAll( "c:\\temp\\temp2.txt", buffer ) FileOpen( "c:\\temp\\temp.txt", "StreamMode", "Write", "Append", f ) FileWrite( f, buffer ) FileClose( f ) FileDelete( "c:\\temp\\temp2.txt" ) : Was able to get this to work but can you append to a text file instead of : overwriting it each time. Using this to fire an ASP page and want to use : the text file as a log. : Trying to download a web file using: WebGetFile( " : http://home.microsoft.com/"; ;, "c:\temp\temp.txt" ) : Get error message: Error opening file for writing. : Can somone help, I'm new to this program
|