explain uses of Textstream object in ASP
Answer / jatin arora
The TextStream Object
The TextStream object is used to access the contents of text
files.
The following code creates a text file (c:\test.txt) and
then writes some text to the file (the variable f is an
instance of the TextStream object):
<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("c:\test.txt",true)
f.WriteLine("Hello World!")
f.Close
set f=nothing
set fs=nothing
%>
To create an instance of the TextStream object you can use
the CreateTextFile or OpenTextFile methods of the
FileSystemObject object, or you can use the OpenAsTextStream
method of the File object.
The TextStream object's properties and methods are described
below:
Properties
Property Description
AtEndOfLine Returns true if the file pointer is positioned
immediately before the end-of-line marker in a TextStream
file, and false if not
AtEndOfStream Returns true if the file pointer is at the
end of a TextStream file, and false if not
Column Returns the column number of the current character
position in an input stream
Line Returns the current line number in a TextStream file
Is This Answer Correct ? | 0 Yes | 1 No |
Explain the difference between post & get method in asp?
What are Scripting Objects?
What is the difference between post and get method.
what are ASP Objects?
What are the advantages of Cookies over Session Object?
How do I administer security for my machine? For an enterprise?
Any one tell me what GOOGLE GEARS and how to use it ?
Enter the roll number of a student and get his marks from a database file called MARKS. Use an ASP code for the same
What is asp format?
What is application object in asp?
What is msmq?
In how many ways you can connect to the Database?