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
Announcing the Release of WebMatrix 35/1/2013 12:53 PM
Announcing the release of Windows Azure SDK 2.0 for .NET4/30/2013 10:37 AM
Windows Azure: Improvements to Virtual Networks, Virtual Machines, Cloud Services and a new Ruby SDK4/26/2013 11:51 AM
Windows AzureConf this Tuesday4/21/2013 9:59 PM
ASP.NET Web API: CORS support and Attribute Based Routing Improvements4/19/2013 11:37 AM
Windows Azure: General Availability of Infrastructure as a Service (IaaS)4/16/2013 6:01 AM
Windows Azure Global Bootcamp on April 27th – sign up now4/12/2013 6:55 PM
Windows Azure: Active Directory Release, New Backup Service + Web Site Monitoring and Log Improvements4/8/2013 9:07 AM
Introducing the new class at the Microsoft Accelerator for Windows Azure4/1/2013 9:57 AM
Windows Azure: New Hadoop service + HTML5/JS (CORS), PhoneGap, Mercurial and Dropbox support3/18/2013 11:43 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...]