TextStream.Write() : TextStream : MS JScript JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » MS JScript » TextStream »

 

TextStream.Write()









Syntax








textstream.Write(string)



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"2true)

    myTextStream.Write("Hello, World!");

    myTextStream.Close();
    -->
    </script>
</html>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo MS JScript
» TextStream