Hello all,
I haven't worked with flat files in a while ande cant get it to append data
i have this code thus far and it not appending the data
dim fs,fname, pathF
const forAppending = 8
pathf=server.mappath("err.txt")
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fname=fs.CreateTextFile(pathf, forAppending, true)
fname.WriteLine("Hello World!")
fname.Close
set fname=nothing
set fs=nothing
thanks for your help