• asp + 读取rss 测试成功两例


    <% @language="VBScript"%>

    <%
    Function readrss(xmlseed)
    dim xmlDoc
    dim http
    Set http=Server.CreateObject("Microsoft.XMLHTTP")
    http.Open "GET",xmlseed,False
    http.send
    Set xmlDoc=Server.CreateObject("Microsoft.XMLDOM")
    xmlDoc.Async=False
    xmlDoc.ValidateOnParse=False
    xmlDoc.Load(http.ResponseXML)
    Set item=xmlDoc.getElementsByTagName("item")
    if item.Length<=10 then
    %>
    <script language="JavaScript">
    alert("对不起,该新闻条数已经少于10条新闻条数!");
    </script>
    <%
    else
    For i=0 To (item.Length-1)
    Set title=item.Item(i).getElementsByTagName("title")
    Set link=item.Item(i).getElementsByTagName("link")
    Response.Write("<a href="""& link.Item(0).Text &""" target='_blank'>"& title.Item(0).Text &"</a><br>")
    Next
    end if
    End Function
    %>
    <html>
    <head>
    <title>远程读取XML文件</title>
    </head>
    <body>
    <%
    call readrss("http://rss.sina.com.cn/news/allnews/tech.xml")
    %>
    <br><br>
    <%
    call readrss("http://rss.sina.com.cn/news/allnews/astro.xml")
    %>
    </body>
    </html>







    ==============================================================================

    <html>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <title>read xml</title>
    <body>
    <%
    dim xmlurl
    xmlurl = "http://rss.sina.com.cn/news/allnews/tech.xml"    '你要读取的xml文件

    dim http
    dim node,i,nodecount
    Set http=Server.CreateObject("MSXML2.XMLHTTP")
    http.Open "GET",xmlurl,False
    http.send
    Set Doc=Server.CreateObject("Microsoft.XMLDOM")
    Doc.Async=False
    Doc.ValidateOnParse=False
    Doc.Load(http.ResponseXML)
    set nodeLis = Doc.getElementsByTagName("item")
    %>
    <table border="0" width="80%" align="center">
    <tr>
    <td width="40%"><b>文章名</b></td>
    <td width="20%"><b>发表日期</b></td>
    <td width="40%"><b>分类</b></td>
    </tr>
    <%
    For i=0 to nodeLis.length-1
        If nodeLis(i).selectSingleNode("category") Is Nothing Then Exit For
    %>
    <tr><td colspan=3><font color=red>第 <%=i+1%> 条记录:</font></td></tr>
    <tr>
    <td>
    <%=nodeLis(i).selectSingleNode("title").text%>
    </td>
    <td>
    <%=nodeLis(i).selectSingleNode("category").text%>
    </td>
    <td>
    <%=nodeLis(i).selectSingleNode("pubDate").text%>
    </td>
    </tr>
    <%  
    Next
    Set Doc = Nothing
    %>
    </table>
    </body>
    </html> 


     

  • 相关阅读:
    cookie 当天12点 过期
    ps 前端常用技巧
    定时器遇到的坑
    ajax 会遇到的问题总结
    立即执行函数表达式 项目经常用到js 代码Module模式
    Hello world
    div position:fixed后,水平居中的问题
    关于div中图片水平垂直居中的问题
    [学习]Activiti流程引擎 入门(1) 初步认识
    SSO框架介绍前篇
  • 原文地址:https://www.cnblogs.com/winner/p/591300.html
Copyright © 2020-2023  润新知