hello
i am using the following script below to post data to my providers website.
However i cant seem to read the response of the querysting which is asp?status=200
how could i achieve this using
VB Script
Code:
<script language="VBScript">
dim http
set http=createObject("Microsoft.XMLHTTP")
http.open "GET","http://www.domainsearch.com/search/useid.asp?search=domainname.com",false
http.send
document.write "<xmp>"
document.write http.getAllResponseHeaders
document.write "/<xmp>"
document.write http.responseText
</script>