<% dim strResult if Request.ServerVariables("request_method")="POST" THEN dim strQuery '取得需要查询的域名 strQuery=request("domainname") & "." & request("ext")
dim objSock '创建sock对象 Set objSock=Server.CreateObject("Aspsock.conn") '设置whois服务器为rs.internic.net objSock.RemoteHost="rs.internic.net" '设置whois服务器端口为43 objSock.Port=43 '设置操作的超时为60秒 objSock.TimeOut=60 '打开与remotehost的连接,返回真为成功 if objSock.Open then '发出查询 WriteLn表示用vbCrlf终结(strQuery & vbCRlf) objSock.WriteLn strQuery '读取返回值,最大长度为65535 strResult=objSock.ReadBytesAsString(65535) '关闭连接 objSock.Close '打印查询结果,你可以需要对此作些处理 Response.Write "<b>查询结果</b><br><textarea rows=10 cols=60>" & strResult & "</textarea>" end if Set objSock=Nothing