asked on
<%
Dim stmReadLine As Stream
stmReadLine = File.OpenRead(Server.MapPath("Journal.txt"))
Dim stmrReadLine As StreamReader = New StreamReader(stmReadLine, System.Text.Encoding.ASCII)
stmrReadLine.BaseStream.Seek(0, SeekOrigin.Begin)
While (stmrReadLine.Peek() > -1)
Dim astrMessage = Split(stmrReadLine.ReadLine(), "+")
Response.Write("<tr><td>" & astrMessage(0) & "</td>" & _
"<td>" & astrMessage(1) & "</td>" & _
"<td>" & astrMessage(2) & "</td>" & _
"<td>" & astrMessage(3) & "</td></tr>")
End While
stmrReadLine.Close()
%>