explain uses of Textstream object in ASP



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

Post New Answer

More ASP Interview Questions

Define a scripting language?

0 Answers  


What is the difference between asp and aspx?

0 Answers  


where should i get free version of Test Director to download

0 Answers  


What are the attributes of the <form> tags?

0 Answers  


What is use of asp?

0 Answers  


difference between POST & GET methods?

1 Answers  


What options are available to deploy my .net applications?

0 Answers  


Explain how can you overload a method?

0 Answers  


What do you need to run asp?

0 Answers  


Explain the difference between client-side script and server-side script?

0 Answers  


What are the ASP Scripting Objects?

1 Answers  


What are the 3 types of internal controls?

0 Answers  


Categories