I was thinking something along the lines of
xfer = CreateObject("roUrlTransfer")
xfer.setURL("http://360abyss.com/")
if xfer.getToString() = "" then
' do something, like diagnostic popup that server cannot be contacted
end if
Above i trust that when failing a fetch, .getToString() returns empty string regardless of reason. Alternatively, one can
'accept only HTTP 200 OK
if xfer.getToFile("tmp:/junk") <> 200
'or check if the content contains a desired substring (in this case "360abyss.com" is inside many href='s)
if xfer.getToString().inStr(0, "360abyss.com") < 0 then