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
Great Free Course on Building ASP.NET MVC Apps With EF Code First, HTML5 and jQuery4/20/2012 1:55 AM
Announcing Windows Azure Media Services4/16/2012 10:26 AM
April 14th Links: ASP.NET, ASP.NET MVC, ASP.NET Web API and Visual Studio4/14/2012 10:19 PM
“Unplugged” LIDNUG online talk with me on Monday (April 16th)4/14/2012 3:45 PM
ASP.NET MVC, Web API, Razor and Open Source3/27/2012 8:02 PM
ASP.NET Web API (Part 1)2/24/2012 1:06 AM
ASP.NET MVC 4 Beta2/19/2012 9:00 PM
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


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...]