| |
nukeboy
Posts: 10
Score: 0
Joined: 5/22/2001
From: USA
Status: offline
|
Slayer, This is a sample code from learnasp.com to write to a text file using file system object <html><head> <TITLE>txtwrite.asp</TITLE> </head><body bgcolor="#FFFFFF"> <% whichFN=server.mappath("/upload/tests/tempfile.txt") ' first, create the file out of thin air Set fstemp = server.CreateObject("Scripting.FileSystemObject") Set filetemp = fstemp.CreateTextFile(whichFN, true) ' true = file can be over-written if it exists ' false = file CANNOT be over-written if it exists filetemp.WriteLine("This is a brand new file!!!!") filetemp.writeblanklines(3) filetemp.WriteLine("This is the last line of the file we created!") filetemp.Close ' Now open it and add some lines forappending =8 set filetemp=fstemp.OpentextFile(whichFN, forappending) filetemp.writeline "a line we added later" filetemp.writeline "another line we added later..." filetemp.close set filetemp=nothing set fstemp=nothing If err.number=0 then response.write "File was appended sucessfully!" else response.write "VBScript Errors Occured!<br>" response.write "Error Number=#<b>" & err.number & "</b><br>" response.write "Error Desc. =<b>" & err.description & "</b><br>" response.write "Help Path =<b>" & err.helppath & "</b><br>" response.write "Native Error=<b>" & err.nativeerror & "</b><br>" response.write "Error Source =<b>" & err.source & "</b><br>" response.write "SQL State=#<b>" & err.sqlstate & "</b><br>" end if %> </body></html> Hope this helps
|
|