小编一直想更新一下网站的主页,重新改一下版,其中加一个更新功能,但是把我BLOG里的内容读取过去,空间不支持.NET,只好用ASP操作XML内容,上baidu搜了一下,发现其中几个版本,拿来稍做修改,得以下内容.测试通过,完全可以读取RSS.代码发上来共享:
< style>
body {margin:10px;background-color:#ffffff;margin-top:6px;}
form{margin:0px;}
* {font:12px tahoma;line-height:140%;color:#000000}
.title {font-weight:bold;color:red;}
.time {font:10px;color:#999999;}
a {text-decoration:none;color:blue;}
<%
url="这里填写远程RSS的URL,PJblog的feed.asp就是了"
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")
for i=0 to oItem.length-5
'设置显示条目数量
response.write ""&i+1&". "&oItem(i).childNodes(1).text&"["&oItem(i).childNodes(3).text&"]
"
next
end if
%> 成都创新互联网站建设专业从事网站制作,域名注册,虚拟空间绑定,备案维护等系列网站项目,欢迎您的咨询了解!