Asp+|rss|xml
<style>
Body
Form
* {font:12px tahoma;line-height:140%;color: #000000}
. title
. Time
A
</style>
<script type= "Text/javascript" >
var switcher=0;
</script>
<body ondblclick= "if (switcher==0) Else" >
<form name= "Rssform" Method=post action= "" >
RSS resources: <input type= "text" name= "RssFeed" size=60 style= "height:22px" value= "<%=request (" RssFeed ")%>" onfocus " =select () > <input type= "Submit" value= "Read It" > Double-click the mouse to close the summary, showing only the title
</form>
<%
If (Request ("rssfeed") = "") Then
Url= "/rss2.asp"
Else
Url=request ("RssFeed")
End If
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-1
Response.Write "<span style= ' font:bold 9px verdana;color: #000000 ' > ' &i+1&" </SPAN>. <a class= ' title ' href= ' &oitem (i) childnodes (1) .text& "' target= ' _blank ' >" &oitem (i) childnodes (0 ) .text& "</a> <span class= ' time ' >[" &oitem (i) childnodes (3) .text& "]<br/>"
Response.Write "<div> Abstract:" &oitem (i) childnodes (4) .text& "</div><br>"
Next
End If
%>