Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

write a file using funcion 1

Status
Not open for further replies.

MoshiachNow

IS-IT--Management
Feb 6, 2002
1,851
IL
HI,
Beeing pretty new to JS,I need to write one word of text to some text file once the HREF link is pressed.

Which JS function should I use?
thanks

Long live king Moshiach !
 
Written where? If on the client computer, you'll need to use ActiveX, which is IE only, or a cookie. If on the server, use server-side scripting, like ASP, PHP, Cold Fusion, etc.

Lee
 
Google is your friend. You could also do a search in this forum to find your answer.

Lee
 
Code:
var fs,file;
fs = new ActiveXObject('Scripting.FileSystemObject');
file = fs.OpenTextFile('path/to/file.txt',2);
file.Write('The text to write to file');
file.Close();

The "2" on line 3 is the read/write mode:
1 = read file
2 = write to file
8 = append to file

The "Write" method can then be replaced with "ReadAll" to read from file.


- Lowet

[gray]Why can't all browsers parse pages the same way? It should be the Web designer who decides how to display the content, not the browser![/gray]
 
novist?


Is this what you meant?

-kaht

Lisa, if you don't like your job you don't strike. You just go in every day and do it really half-assed. That's the American way. - Homer Simpson

[small]<P> <B> <P> <B> <P> <B> <P> <B> <P> <B> <P> <B> <P> <B> <P> <B> <P> <B> <P> <B> <P> <B> <P> <B> <P> <B> <P> <.</B>[/small]
 
hehe, spelling isn't that important :p I'm not a native english speaker myself :p

glad I could help.

- Lowet

[gray]Why can't all browsers parse pages the same way? It should be the Web designer who decides how to display the content, not the browser![/gray]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top