You could use the MS XML Component.

If you were trying to do this with ASP, here is an
example of how to use it:

Set objHTTP = CreateObject("MSXML2.ServerXMLHTTP")

objHTTP.open "GET", "http://www.google.com/";, False 
objHTTP.send()

strSource = objHTTP.responseText 
strStatus = objHTTP.status 

Set objHTTP = Nothing 

Hope this helps,
Chris.

--- Snake Hollywood <[EMAIL PROTECTED]> wrote:
> Does anyone remember what is that microsoft equiv to
> CFHTTP... It's
> called xhttp or something.
> 
> 
> -- 
> ** Archive:
>
http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/
> 
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
> For human help, e-mail:
> [EMAIL PROTECTED]
> 


__________________________________
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com

-- 
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]

Reply via email to