Forum Moderators: open
as Easy_Coder started to suggest, you need to do something with your carriage return - line feeds.
Your text file contains Carriage Return - Line Feeds(CrLf s).
When you get the contents of your file, simply do a:
myFile = Replace(myFile, vbCrLf, "<br>")
This will replace all of the appropriate line feeds in the document with HTML breaks so that it will display properly in your web browser.
Now you should be able to Response.Write your file contents as you were expecting.
HTH,
Mark