ConquerRSS README Copyright (c) 2004 Peter Theill, theill.com ----------------------------------------------------------------------------- Introduction ----------------------------------------------------------------------------- This script is a simple RSS Feed Reader. ----------------------------------------------------------------------------- Usage ----------------------------------------------------------------------------- Paste the following code to a new ASP file such as "testing.asp". Dim rss: Set rss = GetRss("http://msdn.microsoft.com/rss.xml") If (IsObject(rss)) Then Dim chn: Set chn = rss.Channel Response.Write("") Response.Write("") Response.Write("") Response.Write("") Response.Write("") Dim lnk For Each lnk in chn.Items Response.Write("") Response.Write("") Response.Write("") Next Response.Write("") Response.Write("
") Response.Write("" & chn.Title & " RSS feed") Response.Write("
") Response.Write("" & lnk.Title & "") Response.Write("
" & lnk.Description & "
") Response.Write("
") ' release used resources Set rss = Nothing Else Response.Write("Could not read RSS from " & rssFeedUrl) End If ----------------------------------------------------------------------------- Support ----------------------------------------------------------------------------- Direct mails will *not* be answered, sorry. All support *must* go through the forum at http://www.theill.com/forum.asp The script requires "Microsoft.XMLDOM" which is installed on IIS5 and up.