Stylin' RssFeed Demo

This demo illustrates using the RssFeed control to display the items from an RSS syndication feed. Notice that the look and feel has been greatly improved from the last live demo.


Scott Guthrie
TechDays in Belgium and Netherlands1/30/2012 12:30 AM
Getting Started with Windows Azure1/19/2012 9:24 PM
Windows Azure1/16/2012 1:35 AM
“Unplugged” LIDNUG online talk with me on Monday (Jan 16th)1/12/2012 12:08 AM
ASP.NET Security Update Shipping Thursday, Dec 29th12/28/2011 11:59 PM
Learn Windows Azure Next Tuesday (Dec 13th)12/7/2011 5:29 PM
New CSS Editor Improvements in Visual Studio (ASP.NET 4.5 Series)12/2/2011 4:06 PM
New Bundling and Minification Support (ASP.NET 4.5 Series)11/27/2011 11:58 PM
Web Forms Model Binding Part 3: Updating and Validation (ASP.NET 4.5 Series)10/30/2011 8:28 PM
Web Forms Model Binding Part 2: Filtering Data (ASP.NET vNext Series)9/12/2011 5:18 PM


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)
      {
         scottgu.DataSource = "http://scottonwriting.net/sowblog/Rss.aspx";
         scottgu.DataBind();
      }
   }
</script>

<skm:RssFeed HorizontalAlign="center" width="80%" id="scottgu" runat="server" HeaderText="Scott Guthrie" Font-Names="Verdana"
		Font-Size="10pt" CellPadding="4">
		<AlternatingItemStyle BackColor="#E0E0E0"></AlternatingItemStyle>
		<HeaderStyle Font-Size="14pt" HorizontalAlign="right" Font-Bold="True" ForeColor="White" BackColor="#000040"></HeaderStyle>
</skm:rssfeed>


[Return to the article...]