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
Building a Windows Phone 7 Twitter Application using Silverlight3/19/2010 2:18 AM
ASP.NET MVC 2 Released3/12/2010 12:24 AM
Some VS 2010 RC Updates (including patches for Intellisense and Web Designer fixes)3/8/2010 3:07 AM
A few announcements for those in the UK3/8/2010 2:04 AM
No Intellisense with VS 2010 RC (and how to fix it)2/27/2010 2:47 AM
Patch for VS 2010 RC Intellisense Crash Issue Now Available2/15/2010 1:15 PM
Intellisense Crashing fix for VS 20102/11/2010 7:41 PM
LIDNUG Online Chat with Me on Thursday Feb 11th2/11/2010 1:57 AM
VS 2010 / .NET 4 Release Candidate2/9/2010 2:39 AM
jQuery 1.4.1 Intellisense with Visual Studio2/9/2010 1:30 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...]