tiamat2012
Programmer
Anyone know something that does it? I can use include, but I think a readfile would be better, and the files I will be reading/including have a query string on them.
Sincerely,
Kerry
Sincerely,
Kerry
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
dim readtext
Set FS = Server.CreateObject("Scripting.FileSystemObject")
Set RS = FS.OpenTextFile(Server.MapPath("text") & "\test.txt",1)
While not RS.AtEndOfStream
readtext = RS.ReadLine()
response.write readtext & "<br>"
Wend