Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Rss feed

0 views
Skip to first unread message

Arnab das

unread,
Apr 22, 2008, 2:52:12 AM4/22/08
to
I am showing a rss feed in a listview in asp.net 3.5.Currenly I am
showing everyitem,but I would like to show top 5 articles.I am giving
my code below.


XDocument feedXML = XDocument.Load("http://
feeds.encosia.com/Encosia");
var feeds = from feed in feedXML.Descendants("item")
select new
{
Title = feed.Element("title").Value,
Link = feed.Element("link").Value,
Description =
feed.Element("description").Value
};

PostList.DataSource = feeds;
PostList.DataBind();
Here PostList is the id of the listview .Can anybody sujjest How I
would able show the top 5 articles.?

Madhur

unread,
Apr 22, 2008, 7:59:15 AM4/22/08
to
If you are using .NET 3.5, you can use System.ServiceModel.Syndication
namespace to handle RSS.

You need not handle it yourself with XML.

--
Madhur

"Arnab das" <arn...@gmail.com> wrote in message
news:b8d836d6-e1e0-4ca3...@p25g2000hsf.googlegroups.com...

0 new messages