faqts : Computers : Operating Systems : Microsoft

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

4 of 6 people (67%) answered Yes
Recently 4 of 6 people (67%) answered Yes

Entry

ASP Script to capture data from ASP to Notapad

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