TextStream.Write()
|
|
Syntax |
|
The Write() method writes a string to the text file. |
<html> <script language="JScript"> <!-- var myFileSysObj = new ActiveXObject("Scripting.FileSystemObject")
var myTextStream = myFileSysObj.OpenTextFile("c:\temp\test.txt", 2, true)
myTextStream.Write("Hello, World!");
myTextStream.Close(); --> </script> </html>
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
-
-
-
-
-
-
|