Here's an ASP version that uses IE
Set IE = Server.CreateObject("InternetExplorer.Application")
IE.navigate("http://www.aylo.com/index.cfm")
' wait till the browser is done loading the url
do
if IE.ReadyState = 4 then
exit do
end if
next
response.write "<b>Title:</b> " & IE.document.title & "<br>"
response.write "<b>Body:</b> " & IE.document.documentElement.innerHTML &
Ben Lowndes wrote:
>
> Hi
>
> I was hoping you knowledgable people would be able to tell me what various
> other scripting languages equivelants are to CFHTTP. I'm writting up a
> specification for an XML feed and want to make it as easy as possible for
> other developers to get the XML....
>
> So if anyone can tell me the equivelant for ASP, PHP and Perl I'd appreciate
> it.
>
> Thanks
> Ben
>
> ------------------------------------------------------------------------------
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
--
Aymeric Grassart <-> Chief Technology Officer
http://www.aylo.com <-> Aylo Inc.
------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.