From http://www.w3schools.com (Copyright Refsnes Data)
Complete TextStream Object Reference
The Write method writes a specified text to a TextStream file.
Note: This method write text to the TextStream file with no spaces or line breaks between each string.
| TextStreamObject.Write(text) |
| Parameter | Description |
|---|---|
| text | Required. The text to write to the file |
|
<% dim fs,f set fs=Server.CreateObject("Scripting.FileSystemObject") set f=fs.CreateTextFile("c:\test.txt",true) f.write("Hello World!") f.write("How are you today?") f.close set f=nothing set fs=nothing %> The file test.txt will look like this after executing the code above: Hello World!How are you today? |
Complete TextStream Object Reference
From http://www.w3schools.com (Copyright Refsnes Data)