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
ASP.NET MVC Preview 4 Release (Part 1)7/14/2008 5:18 AM
Silverlight 2 Beta2 Released6/6/2008 10:50 PM
ASP.NET MVC Support with Visual Web Developer 2008 Express6/1/2008 9:50 PM
ASP.NET MVC Preview 3 Release5/27/2008 4:26 PM
May 20th Links: ASP.NET, ASP.NET AJAX, .NET, Visual Studio, Silverlight, WPF5/21/2008 1:02 AM
Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta5/12/2008 12:51 PM
Professional ASP.NET 3.5 Book (only $16 on Amazon for a short time)5/6/2008 4:38 AM
April 28th Links: ASP.NET, ASP.NET AJAX, ASP.NET MVC, Silverlight4/29/2008 1:35 AM
Slides from my ASP.NET Connections Orlando Talks4/28/2008 12:51 AM
ASP.NET MVC Source Refresh Preview4/17/2008 12:56 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...]