Ultimele tutoriale de dezvoltare web
 

ASP scrie Metoda


<Complete Reference TextStream Obiect

Metoda de scriere scrie un text specificat într-un fișier TextStream.

Note: Această metodă de scriere de text la fișierul TextStream fără spații sau pauze de linie între fiecare șir.

Sintaxă

TextStreamObject.Write(text)

Parametru Descriere
text Necesar. Textul de a scrie la dosar

Exemplu

<%
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 Reference TextStream Obiect