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 fso, f, lastLine
Set fso=Server.CreateObject("Scripting.FileSystemObject")
Set f=fso.OpenTextFile(Server.MapPath("whatever.txt"), 1)
Do Until f.AtEndOfStream = true
lastLine = f.ReadLine
Loop
Response.ContentType = "text/plain" 'only did this so you the content wouldn't be reolved by the browser
Response.Write "The last line was: " & vbCrLf
Response.Write lastLine
f.Close
Set f=Nothing
Set fso=Nothing
%>