<Complete TextStream Référence objet
La méthode Write écrit un texte spécifié dans un fichier TextStream.
Note: Cette méthode d'écriture du texte au fichier TextStream sans espaces ou des sauts de ligne entre chaque chaîne.
Syntaxe
TextStreamObject.Write(text)
Paramètre | La description |
---|---|
text | Champs obligatoires. Le texte à écrire dans le fichier |
Exemple
<%
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 TextStream Référence objet