![]() |
|
|
+ Search |
![]()
|
Nov 16th, 2006 04:15
Maro M, Hema vathi,
There is nothing called capture data from asp to notepad! What I
understood is that you want to save some text entered by users to
notepad, this can be easily done in asp using FileSystemObject! Here is
an example:
set objFSO=CreateObject("Scripting.FileSystemObject")
Set myTextStream = objFSO.OpenTextFile("out.txt", 2, True)
f.WriteLine("This is a test.");
myTextStream.Close