Rss Feed with Asp.Net

  • Thread starter Thread starter Shaqman
  • Start date Start date
S

Shaqman

Can anybody point me for some samples in displaying RSS (XML) news feed on a
asp.net page. Any help will be apreciated
 
Hi,

I'd recommend you the Raccoom framework:

http://www.codeproject.com/csharp/rssframework.asp

for getting and parsing the xml into strong typed classes.

From then on you will have to analyze the structure of the particular feed
and display whichever part(s) you need.

An advise (if you will be using this library, of course): wrap the call to
the constructor of RssChannel in try-catch block because you can't be sure
that you'll be getting an ok xml every time.

Hope this helps
Martin Dechev
ASP.NET MVP
 
Back
Top