ASP Write Method
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.
Syntax
|
TextStreamObject.Write(text)
|
| Parameter |
Description |
| text |
Required. The text to write to the file |
Example
<%
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
Click here to design a Stunning Flash Website for Free
Wix is a revolutionary web design tool that provides anyone with the possibility to create professional and beautiful websites for free.
With e-commerce features, search engine visibility and many more professional tools, Wix is the ultimate solution for creating a spectacular site while saving tons of money.
|