Created
June 7, 2012 18:38
-
-
Save weppos/2890668 to your computer and use it in GitHub Desktop.
RoboWhois + ASP example: get the WHOIS record for a domain.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% | |
' Requests the WHOIS record for the domain | |
' and returns a String containing the WHOIS response. | |
Function Whois(url) | |
Dim objXmlHttp | |
Set objXmlHttp = Server.CreateObject("Microsoft.XMLHTTP") | |
objXmlHttp.Open "GET", url, False, "YOUR_API_KEY", "X" | |
objXmlHttp.SetRequestHeader "User-Agent", "ASP/3.0" | |
objXmlHttp.Send | |
If objXmlHttp.Status = 200 Then | |
Whois = CStr(objXmlHttp.ResponseText) | |
end if | |
Set objXmlHttp = Nothing | |
End Function | |
' Declare the variable to store the result | |
Dim strResult | |
' Call the function and assign the result | |
strResult = Whois("http://api.robowhois.com/whois/google.com") | |
%> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment