Hello, everyone!
I'm looking for some advice to embed an off-site ASP into my site. I'm developing a website for the RV dealership I work for. Our inventory is hosted by a company called RVUSA. To embed the inventory I was told to use the following code:
<%
Set objXMLHTTP = Server.CreateObject("Microsoft.XMLHTTP")
objXMLHTTP.Open "GET", "http://bourbonrv.rvusa.com/inventory_used.asp", False
objXMLHTTP.Send
strPageText = objXMLHTTP.responseText
Response.Write(strPageText)
Set objXMLHTTP = Nothing
%>
However, since ASP isn't an option on TCH, I was wondering if there is a PHP equivalent. Currently, I'm using an IFrame to include the page, but this is causing some strange behavior with my dropdown menu. To see what I'm referring to, please give my site a look. http://www.bourbonrv.com/new_inventory.htm
Any suggestions would be appreciated.
Thanks.
Timothy