Quantcast
Channel: Consuming RSS feeds in ASP and C# - Stack Overflow
Browsing all 3 articles
Browse latest View live

Answer by Vadym Kyrylkov for Consuming RSS feeds in ASP and C#

SyndicationFeed.Items is not a List, but implements IEnumerable interface, so instead ofIEnumerable items = Cache["BlogFeed"] as List<SyndicationItem>;use the following line:IEnumerable items =...

View Article



Answer by PsychoCoder for Consuming RSS feeds in ASP and C#

Here's a simple example I would use to receive my Twitter feed (I'm only getting name, update title & id)public class TwitterFeed{ public string Name { get; set; } public string Title { get; set; }...

View Article

Consuming RSS feeds in ASP and C#

I'm working on making a modification to a site built with ASP/C#, and one of the tasks was to add in the display of 2 RSS feeds - one from the site's internal blog, and the other from the site's...

View Article
Browsing all 3 articles
Browse latest View live


Latest Images