<%
If Request.QueryString("lookup") <> "" Then
Dim whoisdll
Dim result
Set whoisdll = Server.CreateObject("WhoisDLL.Whois")
result = whoisdll.whois(Request.QueryString("lookup"))
Response.Write "Whois server: " & whoisdll.WhoisServer & "
"
Response.Write whoisdll.nl2br(result)
End If
%>
