Here's a quick example of how to use the XMLHttp object to perform a WhoIs query. You can then write your own functiosn to strip out the desired content in the page.
I've added our standard code to prevent ASP page caching for your convenience.
<%
Response.Buffer = True
Response.AddHeader "cache-control", "private"
Response.AddHeader "pragma", "no-cache"
Response.ExpiresAbsolute = #January 1, 1990
00:00:01#
Response.Expires=0
Function WhoIS(sDomain)
Dim oXMLHttp
on error resume next
Set oXMLHttp=Server.CreateObject
("MSXML2.XMLHTTP")
oXMLHttp.open "GET",
"http://www.networksolutions.com/cgi-bin/whois
/whois/?STRING=" & Trim(sDomain), false
oXMLHttp.send
if oXMLHttp.status = 200 Then
WhoIS = oXMLHttp.responseText
else
WhoIs = "0"
end if
Set oXMLHttp = Nothing
End Function
response.write WhoIs("eggheadcafe.com")
%>
Robbe D. Morris
http://www.EggheadCafe.com
Publish A Comment
| Popular WPN Business Resources |
-

Latest Features from Digg and StumbleUpon
Although news outlets continually bring reports about new features on... -

What's Next for Twitter API?
Although Twitter's homepage gets a tremendous amount of traffic, it... -

The Rise of Horizontal Content Sites
Over the last year, the search industry has seen a large rise in...
iEntry 10th Anniversary
RSS
Newsletter
Advertising



















