sul server 100.100.100.100 fai un controllo di questo tipo
codice:
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
xml.Open "GET", "http://200.200.200.200/OnLineOffLine.asp", False
xml.Send
risultato = xml.responseText
if Instr(risultato,"BRAVO MI HAI TROVATO!") <> 0 then
Response.redirect("http://200.200.200.200/")
else
Response.redirect("ServerOffLine.htm")
end if
Sul server 200.200.200.200 crei un file OnLineOffLine.asp
e ci metti dentro
codice:
<html><body>BRAVO MI HAI TROVATO!</body></html>