Answer by Marco for Consuming WordPress RSS Feed In ASP.NET
You can use my Library for this: wprssapi.marcogriep.deJust a few lines of code. Very easy to do://Get an Instance of Wordpress Controller (Singleton) WordPressFeedController wp =...
View ArticleAnswer by techchris427 for Consuming WordPress RSS Feed In ASP.NET
This is what I use for my wordpress feed reader.private async void ReadFeed() { var rssFeed = new Uri("http://truestrengthmd.com/category/blog/feed"); var request =...
View ArticleAnswer by Sean Kendle for Consuming WordPress RSS Feed In ASP.NET
This is simply @Christophe Geers's great solution converted to VB, as a function:Protected Function getWordPressFeed(ByVal strUrl As String) As DataTable Dim rssFeed = New Uri(strUrl) Dim request =...
View ArticleAnswer by Wiktor Zychla for Consuming WordPress RSS Feed In ASP.NET
I would start in the System.ServiceModel.Syndication namespace, there are classes to directly manipulate RSS feeds. In particular, this looks promising: XmlReader reader =...
View ArticleAnswer by Anders Forsgren for Consuming WordPress RSS Feed In ASP.NET
I'd start off with the built in classes for RSS/Atom: SyndicationFeedusing (XmlReader reader = XmlReader.Create(url)){ return SyndicationFeed.Load(reader);}
View ArticleAnswer by Christophe Geers for Consuming WordPress RSS Feed In ASP.NET
You can use LINQ to XML to read a WordPress RSS feed.First get the feed. Make a Uri instance out of it.var rssFeed = new Uri("https://github.com/geersch/feed/");Then perform a GET request.var request =...
View ArticleConsuming WordPress RSS Feed In ASP.NET
How do I consume my WordPress blog's RSS feed to display my latest blog posts on my homepage? I ran into the following piece of code to do this: Function GetRSSFeed(strURL as String) as DataTable'Get...
View Article