Metoda zápisu ASP


❮ Dokončete referenci objektu TextStream

Metoda Write zapíše zadaný text do souboru TextStream.

Poznámka: Tato metoda zapisuje text do souboru TextStream bez mezer nebo zalomení řádků mezi jednotlivými řetězci.

Syntax

TextStreamObject.Write(text)

Parameter Description
text Required. The text to write to the file

Příklad

<%
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?

❮ Dokončete referenci objektu TextStream