Click here to Skip to main content
15,867,568 members
Articles / Web Development / IIS
Article

RSS Feed using ASP.NET 2.0

Rate me:
Please Sign up or sign in to vote.
4.09/5 (22 votes)
9 Jan 20062 min read 210.5K   3.4K   64   25
This RSS Feed example will explain how to consume an RSS Feed in eight easy steps..!

Image 1

Introduction

This article will explain how to consume an RSS Feed from another website using ASP.NET 2.0. I have tried to keep this article very simple so that even beginners can easily understand this. This article will explain to you how to use RSS Feeds in eight easy steps using ASP.NET 2.0!

Background

Before you start reading/implementing the steps using this article, hope you are aware of RSS Feeds. RSS means Really Simple Syndication. Nowadays, every dynamic web site, has this feature named RSS. Using RSS Feeds, you can be in sync with the changes/additions made to your favourite shopping website or your favourite techie blog website.

Using the code

OK. Let's start. Please follow the following seven easy steps and your RSS Feed webpage will be ready to consume RSS from a given website:

  1. Start -> Programs -> Microsoft Visual Web Developer 2005 Express Edition.

    Image 2

  2. Now, go to File -> New Website to create a new website. Select Location=File System, Language=Visual Basic, and give the default web site path (by default, it will create a new website at C:\Documents and Settings\default\My Documents\Visual Studio 2005\WebSites).

    Image 3

  3. Then, drag the XMLData source component from Toolbox -> Data -> XMLDataSource to the blank WebForm.

    Image 4

  4. Click on XMLDataSource Tasks - > Configure Data Source link to configure the data source. Now, this is the actual thing in the whole project.

    Image 5

  5. Then, you will see the ConfigureDataSource window which has the following paths to be specified to consume the XML data:
    • Data File = Data file will be your RSS Feed path. In my case, it is http://spaces.msn.com/members/mauliksoni/feed.rss.
    • Transformation File = we are not currently using any XML transformation file, so leave it blank.
    • XPath Expression = again, this is very much important. An XPath variable will be used later on in our code to get the specific RSS Feed link. Give it as rss/channel/item now.
  6. The next step is to drag the DataList control from Toolbox -> Data -> DataList to the WebForm.

    Image 6

  7. Then, click on the Choose Data Source dropdown for the DataList and select XMLDataSource1.

    Image 7

  8. And then the final step. Switch to the HTML Source View of the WebForm and paste the following code:
    XML
    <ASP:DataList...> 
     <ItemTemplate> 
     </ItemTemplate> 
    </ASP:DataList>

    Image 8

    And then, press F5 in your project to Run the project. Please refer the example source file for any further details.

Info

Q-1. How should I obtain the RSS feed path?

Ans. You will require a path to the RSS Feed from any given website to actually consume the RSS Feed of that website. In my example, I have used http://spaces.msn.com/members/mauliksoni/feed.rss, but you can use any RSS path. To get the RSS feed path from any website, try to locate the word RSS or look for its image in the website. Then click on RSS or XML, your browser will be redirected to the XML formatted page. Now copy the link form IE.

History

N/A

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Other Cincinnati Children's Biomedical Informatics
United States United States
http://www.linkedin.com/in/mauliks

Comments and Discussions

 
GeneralMy vote of 1 Pin
jorgepitgh20-Jul-10 5:24
jorgepitgh20-Jul-10 5:24 

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.