But ASP developers wouldn't possibly know what cfhttp is :)

Thanks to you guys who responded!!

-----Original Message-----
From: Jon Hall [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 13, 2002 9:00 PM
To: CF-Talk
Subject: Re: <cfhttp> equivalent in ASP


You know, there are ASP forums out there... ;-)
Anyway, MSXML is not just for xml, and it's free and very reliable, and it
let's you set http headers, and doesn't urlencode everything even *cough*.

http://www.microsoft.com/xml

A nasty VBScript example. <%@ Language="VBScript" %>
<%
 Dim objSvrHTTP
 Dim PostData

 Set objSvrHTTP = Server.CreateObject("Msxml2.ServerXMLHTTP.4.0")
 objSvrHTTP.open "GET", "http://www.yahoo.com";, false

 objSvrHTTP.send
 Response.Write objSvrHTTP.responseText
%>
Ugh...I need to wash my hands now.

jon
> > From: "Ramin Surya" <[EMAIL PROTECTED]>
> > Reply-To: [EMAIL PROTECTED]
> > To: CF-Talk <[EMAIL PROTECTED]>
> > Subject: <cfhttp> equivalent in ASP
> > Date: Thu, 13 Jun 2002 11:50:37 -0500
> >
> > Anybody ever done this before?
> > Any information will be greatly appreciated.
> >
> > Thanks,
> >



______________________________________________________________________
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to