TedMag.com Commodity Watch courtesy of TED Magazine
|
<%
Response.Buffer = True
Dim objXMLHTTP, xml
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
xml.Open "GET", "http://www.tedmag.com/webnews/commoditywatch_feed.asp", False
xml.Send
Response.Write xml.responseText
Set xml = Nothing
%>
|
|
|