Smart Mind "SCRIPT to Write Text files"

iamrashid 1 Tallied Votes 129 Views Share

It is a simple one and a more complex one will be here soon
this code has not been tested but it works well on IE 6.0+
Do enjoy and Comment it Please

vmars commented: coll +2
<script>
var fso = new ActiveXObject("Scripting.FileSystemObject");
var s = fso.CreateTextFile("test.htm", true);
//--varibles-- starts.
 
//--variables--ends.
var bgcolor="red"
s.WriteLine('<html>');
//To enter more than one arguments (i-e simple and a variable or special character we can use the "+" sign )
s.WriteLine('<body bgcolor='+bgcolor+'>');


s.WriteLine('</body>');
s.WriteLine('</html>');
s.Close();
</script>
sriluk249 0 Newbie Poster

but how to use it

vmars 0 Light Poster

<script>
Pls, is this different than javascript? How so?
If not javascript, how can I change it to javascript?
Thanks...vmars

vmars 0 Light Poster

Here's my attempt to change it to javaScript:
Since there is no EVENT to execute the script, when does it get executed?
It appears to not execute.
I ran it with ie, firefox, googleChrome.
Thanks for your help!...vmars

<Html>
<head>
<script type="text/javascript">
var fso = new ActiveXObject("Scripting.FileSystemObject");
var s = fso.CreateTextFile("test.htm", true);
//--varibles-- starts.

//--variables--ends.
var bgcolor="red"
s.WriteLine('<html>');
/* To enter more than one arguments (i-e simple and a variable 
or special character we can use the "+" sign ) */
s.WriteLine('<body bgcolor='+bgcolor+'>');


s.WriteLine('</body>');
s.WriteLine('</html>');
s.Close();
</script>
</head>
<Body>
<h3>var fso = new ActiveXObject("Scripting.FileSystemObject");</h3>
</body>
<html>
vmars 0 Light Poster

I even tried changing the above script:
<script type="text/javascript">
to
<script type="text/vbscript">

and ran it with IE,
But s till nogo.
Help, please.
Thanks...vmars

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.