Download and install the latest version of RSS2HTML Scout.
You can download it here
1) Run Visual
Studio.NET
2) Go
to File menu
and select New
Project:
Select ASP.NET
Web Application project
type and click OK
3) Visual
Studio.NET will
create new empty ASP.NET project. Double-click on
the empty space of the form:
This will open the source
code editor window on procedure handling Page_Load
event. We will
place our code for SWF flash animation generation into this
procedure:
4) Use
the following code for procedure (you can simply copy and paste
this code from this page into ASP.NET source
code editor window):
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
' uncomment line below to force cache refresh on every script load
Response.Expires
= -1
Dim RSS2HTML
= CreateObject("RSS2HTMLScoutLib.RSS2HTMLScout")
RSS2HTML.ItemsPerFeed
= 5
' ##### we can add more than one RSS feed #########
RSS2HTML.AddFeed("http://bytescout.com/news.xml",
180) ' update every 180 minutes (3 hours)
'RSS2HTML.AddFeed("http://rss.news.yahoo.com/rss/internet",
180)
'RSS2HTML.AddFeed("http://www.apple.com/main/rss/hotnews/hotnews.rss",
180)
'
RSS2HTML.AddFeed "http://google.blogspace.com/index.xml", 10
'
RSS2HTML.AddFeed "http://blogs.pcworld.com/staffblog/index.rss",
10
'
RSS2HTML.AddFeed "http://www.quotationspage.com/data/qotd.rss", 10
RSS2HTML.Execute()
Response.Clear()
Response.Write(RSS2HTML.HTMLOutput)
Response.End()
RSS2HTML
= Nothing
End Sub
5) Now run ASP.NET project
using Debug |
Start command:
Visual Studio.NET will
run ASP.NET project
on web-server and you will see Internet
Explorer window
with generated HTML converted from RSS channels using RSS2HTML
Scout: