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.
set fso = Server.Createobject("Scripting.FileSystemObject")
path = "c:\temp\ipAddress.txt"
set file = fso.opentextfile(path, 1)
do until file.AtEndOfStream
If string_IPaddress = file.ReadLine then
Response.write("<br> string_IPaddress = " & string_IPaddress & "<br>")
end if
loop
file.close
set file = nothing
set fso = nothing
arrayIP = Split( file.ReadAll, ", " )
for i = LBound(arrayIP) to UBound(arrayIP)
If string_IPaddress = trim(arrayIP(i)) then
Response.write("<br> string_IPaddress = " & trim(arrayIP(i)) & "<br>")
end if
next