quote:
Originally posted by Huhu_Manix
Write the string in a file...
code:
function writeFile(fichier, txt){
var Object = new ActiveXObject('Scripting.FileSystemObject');
var NouvTxt = Object.CreateTextFile(fichier,true);
NouvTxt.Write(txt);
NouvTxt.Close();
}
Thanks for the answers! But if I want to write the string in a file, how do I do to read it again?