salve,
navgando per la rete ho trovato uno script che permette di fare i whois sui domini, ma mi da errore e nello specifico errore 404
posto il codice mi dite il perche dell' errore?
<%
dominio = Request("dominio")
if len(dominio) > 0 then
' pagina da richiamare
url = "http://www.internic.net/cgi/whois?whois_nic=" & dominio
' usiamo l'oggetto XMLHTTP
Set XMLHTTP = Server.CreateObject("Microsoft.XMLHTTP")
XMLHTTP.open "GET", url, false
' inviamo la richiesta
XMLHTTP.send (strPost)
' codice di risposta del server
status = CInt(XMLHTTP.status)
' Se lo stato è 200, è ok
if status = 200 then
Response.write (XMLHTTP.responseText)
else
Response.write "
Errore: " & status
end if
set XMLHTTP = Nothing
else
%>
<form method="POST">
Dominio: <input type="text" size="20" name="dominio">
<input type="submit" value="Cerca">
<%
end if
%>