ASP调用远程XML数据的代码(alexa排名数据)
程序员文章站
2022-03-25 21:02:08
复制代码 代码如下: <% url="http://news.163.com/special/00011k6l/rss_newstop.xml" set xml =...
复制代码 代码如下:
<%
url="http://news.163.com/special/00011k6l/rss_newstop.xml"
set xml = server.createobject("microsoft.xmlhttp")
xml.open "get", url, false
xml.send
set xmldom = server.createobject("microsoft.xmldom")
xmldom.async=false
xmldom.validateonparse=false
xmldom.load(xml.responsexml)
if xmldom.readystate>2 then
set oitem=xmldom.getelementsbytagname("item")
%>
<table width="550" border="0" cellpadding="3" cellspacing="1" bgcolor="#eceff4">
<%
for i=0 to oitem.length-1
word=oitem(i).childnodes(0).text
title=oitem(i).childnodes.item(0).text
link=oitem(i).childnodes.item(1).text
pubdate=oitem(i).childnodes.item(3).text
%>
<tr>
<td height="24" bgcolor="#ffffff">·<a href="<%=link%>" target="_blank"><font style="font-size:14px;" color="#003366"><%=word%> </font><font color="#999999">(<%=pubdate%>)</font></a></td>
</tr>
<%
next
end if
%>
</table>
远程文件的内容如下:
复制代码 代码如下:
<?xml version="1.0" encoding="gbk"?>
<?xml-stylesheet type="text/css" href="http://news.163.com/css/allrss.css"?>
<rss version="2.0">
<channel>
<title>网易头条新闻</title>
<link>http://news.163.com/</link>
<description>网易头条新闻</description>
<pubdate>wed, 16 feb 2011 02:59:02 gmt</pubdate>
<lastbuilddate>wed, 16 feb 2011 02:59:02 gmt</lastbuilddate>
<item id="1">
<title><![cdata[一线城市房租连涨]]></title>
<link>http://news.163.com/11/0216/10/6t0nihoa00014jb6.html</link>
<description><! [cdata[从去年底开始掀起的租金涨价潮,在春节后继续放大。记者在春节后接连接到租金上涨的消息,北京、上海、广州等一线城市房屋的租金持续上涨,很多中介开年后,重新刷新了年前房屋的出租价格,住房、商铺、写字楼的租金都上涨了10%左右不等。记者昨日走访了广州的多家中介,中介普遍反映租赁市场火热,成交单中租单已是卖单五 ]]>......</description>
<pubdate>2011-02-16 10:59:02</pubdate>
</item>
<item id="2">
<title><![cdata[山东部分面粉厂因农民惜售商人囤粮停产]]></title>
<link>http://focus.news.163.com/11/0216/11/6t0r9mie00011sm9.html</link>
<description><! [cdata[民以食为天,粮价乃百价之基。 2010年下半年开始的粮价上涨引发中国经济的连锁反应,又因去秋以来的北方大旱加剧粮价上涨预期,最近国际粮价屡创新高。 稳定物价坐上了今年中国经济的“头把交椅”。春节期间,国务院总理*专程奔赴粮食主产区作出最新指示,国务院常务会议则迅速出台保护粮食生产的“国十条”。 那么百 ]]>......</description>
<pubdate>2011-02-16 11:30:40</pubdate>
</item>
</channel>
</rss>