How do you use asp to write to a text file...If you know and you have the time could you wite me an asp file that will write to a text file in the same directory. Thanks a lot.....
Printable View
How do you use asp to write to a text file...If you know and you have the time could you wite me an asp file that will write to a text file in the same directory. Thanks a lot.....
Imports System.IO
Imports System.Net
----In your code
Dim myFileStream as StremWriter
Dim myData As String = "Some Data"
myFileStream = File.CreateText(Server.MapPath("/your_virtual_directory_that_your_asp_page_is_in") & "\your_textfile")
myFileStream.WriteLine(myData)
myFileStream.Close()