Click here to Skip to main content
15,867,771 members
Articles / Programming Languages / C#
Article

C#: Application to Browse and Read using RSS Feeds from your Desktop

Rate me:
Please Sign up or sign in to vote.
3.53/5 (12 votes)
9 Jun 2008CPOL4 min read 83.2K   5K   45   8
This article describes the usage of the WebBrowser object in C# to read and maintain your favourite RSS Lists
ReadForSpeed-Source

Introduction

This article is aimed at explaining how the WebBrowser control in C# works and how to build an RSS Feed reader using several WebBrowser controls. It also explains how RSS feed XML files can be processed using functions provided by System.Xml namespace.

The application created here has the following features:

  1. RSS Feed subscription
  2. RSS Feed list maintenance
  3. RSS Feed Viewer
  4. Web Page Reader and Browser

Background

The application in this article has been developed using Visual Studio 2008, but in .NET Framework 2.0. It can be built and run as is using .NET Framework 3.0 and 3.5.

Using the Code

The code in this article works using WebBrowser controls which will be explained in detail later in the article. The code takes in an RSS Feed link and adds it to the Web content of the LHS pane. Any click on a feed in the RHS pane is directed towards loading the corresponding feed after being formatted using the XPathNavigator, in the RHS top pane. Any click on a feed link in this pane is redirected to loading the corresponding page in the RHS bottom pane. The user can further browse other pages in this pane by clicking on other links on this page. The user can move back and forth between browsed pages using the Forward and Back buttons in the toolbar.

Now, coming to the WebBrowser control. This control provides us with all the functionality needed to build a Web browsing application. I will go through all its methods and properties used in the application being built here. But first, let us see how we can fetch and process a page provided to us by an RSS Feed link.

Since RSS feeds are XML, we need to use XML objects to process it. For this, we need to import the namespace System.Xml.

C#
using System.Xml;

Then we need to create an XML document and load up the RSS content into it:

C#
XmlDocument RSSXml = new XmlDocument();
RSSXml.Load(txtURL.Text);

Then we need to get the list of nodes from this XML document, that can be used to display the feed content. After that, we go through each node and pull out display relevant information from it, like the title, link and description.

C#
XmlNodeList RSSNodeList = RSSXml.SelectNodes("rss/channel/item");
StringBuilder sb = new StringBuilder();
foreach (XmlNode RSSNode in RSSNodeList)
{
    XmlNode RSSSubNode;
    RSSSubNode = RSSNode.SelectSingleNode("title");
    string title = RSSSubNode != null ? RSSSubNode.InnerText : "";
    RSSSubNode = RSSNode.SelectSingleNode("link");
    string link = RSSSubNode != null ? RSSSubNode.InnerText : "";
    RSSSubNode = RSSNode.SelectSingleNode("description");
    string desc = RSSSubNode != null ? RSSSubNode.InnerText : "";
    sb.Append("<font face='arial'><p><b><a href='");
    sb.Append(link);
    sb.Append("'>");
    sb.Append(title);
    sb.Append("</a></b><br/>");
    sb.Append(desc);
    sb.Append("</p></font>");
}

At the end of this, the string builder contains the content of RSS feed, as a well formatted HTML. This is where we start off with the WebBrowser control. The WebBrowser control can be loaded with a page using several ways. A URL can directly be loaded to the WebBrowser control using Navigate(Uri) function of the WebBrowser. However to load HTML content that has been created programmatically, we need to populate the DocumentText of the WebBrowser using:

C#
RSSBrowser.DocumentText = sb.ToString();

Now we need to learn how to communicate between two browser controls. By default, if a link is clicked on a page loaded in a WebBrowser control, it loads the target page in the same control. In case we want it to load the content in another browser, we need to block this control and invoke the other control's navigation.

To do this, we need to understand the Navigating event of the WebBrowser control. This event is triggered before a WebBrowser control starts navigating to a new page. It can be used to stop the navigation by setting its event argument's Cancel value to true as in the following code:

C#
private void RSSList_Navigating(object sender, WebBrowserNavigatingEventArgs e)
{
    if (!m_bFromLoadEvent)
    {
        e.Cancel = true;
        NetBrowser.Navigate(e.Url);
    }
    else
    {
        m_bFromLoadEvent = false;
    }
}

This code, based on a boolean value, blocks the current object's navigation and navigates another WebBrowser control NetBrowser, to the target URL. This is how the different panes communicate with each other in the given application.

Lastly, we need to learn how to navigate back and forth between the pages already visited by the WebBrowser control. This is quite simple and can be done as follows:

C#
if (NetBrowser.CanGoBack)
{
    NetBrowser.GoBack();
}

if (NetBrowser.CanGoForward)
{
    NetBrowser.GoForward();
}

The CanGoForward and CanGoBack properties show the history status in forward and backward directions. The GoBack() and GoForward() functions navigate back and forth in the history of visited pages.

Points of Interest

The application stores the list of subscribed RSS feeds in a text file in the same location as the program EXE. Coming soon in the next versions of ReadForSpeed are the features to tag feeds and store feed content for offline usage.

History

  • Version 1.0.0.0 updated on 06/10/2008

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Program Manager Wipro Technologies
India India
I have a Bachelor's Degree in Electrical Engineering, class of 2004 and has been interested in software development since second grade (you read it right)

I have built and led highly efficient and performant teams from ground up and have been able a part of several Digitization and Cloud Transformation efforts for large enterprises.

Apart from software building, I also hold a keen interest in Photography, Travelling and tinkering with Arduino and Raspberry Pi

Comments and Discussions

 
Questionlatest feeds Pin
Member 107808386-Nov-14 20:18
Member 107808386-Nov-14 20:18 
QuestionThanks Pin
Member 37631433-Oct-12 21:11
Member 37631433-Oct-12 21:11 
GeneralMy vote of 5 Pin
Manoj Kumar Choubey15-Feb-12 23:23
professionalManoj Kumar Choubey15-Feb-12 23:23 
QuestionLIcense of RSS DATA feed Pin
archana jain28-Dec-11 23:42
archana jain28-Dec-11 23:42 
GeneralNice.. Pin
Mark Pryce-Maher6-Apr-09 4:30
Mark Pryce-Maher6-Apr-09 4:30 
General407 Proxy Authentication Required Pin
Member 387445516-Jun-08 2:53
Member 387445516-Jun-08 2:53 
GeneralRe: 407 Proxy Authentication Required Pin
Prashant K Singh26-Jul-08 23:15
professionalPrashant K Singh26-Jul-08 23:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.