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.
<%
IPAddress = request.servervariables("REMOTE_ADDR") ' returns local address
response.write ("IP of local: " & IPAddress & "<br>")
IPAddress = request.servervariables("LOCAL_ADDR") ' returns web server
response.write ("IP of server: " & IPAddress & "<br>")
%>
Set oHTML = CreateObject("MSXML2.XMLHTTP")
oHTML.Open "GET", "[URL unfurl="true"]http://whatismyip.com/index.cfm",[/URL] False
oHTML.Send
sText = Split(oHTML.ResponseText, "TITLE>")
WScript.Echo Left(sText(1), Len(sText(1)) - 17)
Set oHTML = Nothing
WScript.Quit