RssFeed Demo

This demo illustrates using the RssFeed control to display the items from an RSS syndication feed. Note that it doesn't look particularly pretty - in the next demo we'll see how to use the RssFeed control's properties to improve the aesthetic appearance.


Scott on Writing
The CreateUserWizard and Validation ErrorMessages7/24/2008 6:41 AM
Installing Dragon Naturally Speaking (DNS) on Vista / Windows Server 2008 64-Bit7/19/2008 4:11 PM
Using Dragon NaturallySpeaking7/19/2008 3:49 PM
Suggestions for a broken hand?7/15/2008 6:27 PM
Three New Master Page Tutorials Published7/13/2008 7:21 AM
Two Monitors Are Better Than One, But Are Three Better Than Two?7/10/2008 4:52 PM
Speeding Up FireFox When Using the ASP.NET Development Server from Localhost7/9/2008 9:54 AM
July's Toolbox Column Online7/4/2008 7:43 AM
For Some Probability Problems, Seeing Can Be Believing7/1/2008 10:54 AM
Random Grammar/Style Question6/26/2008 11:04 AM


Source Code
<%@ Register TagPrefix="skm" Namespace="skmRss" Assembly="skmRss" %>
<script language="C#" runat=server>
   private void Page_Load(object sender, System.EventArgs e)
   {
      if (!Page.IsPostBack)
      {
         sow.DataSource = "http://scottonwriting.net/sowblog/Rss.aspx";
         sow.DataBind();
      }
   }
</script>

<skm:RssFeed id="sow" runat="server"></skm:RssFeed>


[Return to the article...]