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.
<%
ip = request("ip")
set shell = server.createobject("wscript.shell")
shell.Run("pingit " & ip)
set FSO = server.createobject("scripting.filesystemobject")
'Check for the semaphore
do until fso.fileExists("c:\temp\" & ip & ".fin")
loop
Set TextStream = FSO.OpenTextFile("c:\temp\" & ip & ".txt", 1)
S = TextStream.ReadAll & NewLine & NewLine
TextStream.Close
'Cleanup
FSO.DeleteFile("c:\temp" & ip & ".txt")
set FSO=nothing
set shell=nothing
response.write "<PRE>" & S & "</PRE>"