ASP OpenAsTextStream Method
Definition and Usage
The OpenAsTextStream method opens the specified file and returns a TextStream object for accessing the file.
Syntax:
FileObject.OpenAsTextStream(mode,format)
Parameter | Description |
---|---|
mode |
Optional. How to open the file (input/output mode).
|
format |
Optional. The format to open the file in. If this parameter is ignored, the file is opened in ASCII format.
|
Example
<% dim fs,f,ts set fs=Server.CreateObject("Scripting.FileSystemObject") Set f=fs.GetFile("c:\test.txt") Set ts=f.OpenAsTextStream(ForWriting) ts.Write("Hello World!") ts.Close Set ts=f.OpenAsTextStream(ForReading) Response.Write(ts.ReadAll) ts.Close set ts=nothing set f=nothing set fs=nothing %>
Output:
Hello World!