Guest User

Untitled

a guest
Jan 20th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <SCRIPT LANGUAGE="JavaScript">
  2. function WriteToFile(passForm) {
  3.  
  4. set fso = CreateObject("Scripting.FileSystemObject");
  5. set s = fso.CreateTextFile("C:\wamp\www\test.txt", True);
  6. s.writeline("HI");
  7. s.writeline("Bye");
  8. s.writeline("-----------------------------");
  9. s.Close();
  10. }
  11. </SCRIPT>
Add Comment
Please, Sign In to add comment