RssFeed Demo

This demo illustrates using the RssFeed control to display the items from an RSS syndication feed. Note that it doesn't look particularly pretty - in the next demo we'll see how to use the RssFeed control's properties to improve the aesthetic appearance.


Scott on Writing
Running the Same Query Against Multiple Databases11/17/2008 3:00 AM
The Eight Commandments of Source Code Control11/13/2008 3:28 AM
Tracking User Activity11/11/2008 3:24 AM
November's Toolbox Column Now Online10/29/2008 3:44 PM
Visual Studio's Property Window Not Refreshing in the Designer10/28/2008 3:50 AM
October's Toolbox Column Online10/13/2008 6:28 AM
OUTPUTing Data from the Just-Inserted, Updated, or Deleted Row(s)10/11/2008 8:00 AM
Going Independent: When Do You Bill Your Clients and What Are The Payment Terms?10/9/2008 4:11 PM
A Twist on the Monty Hall Problem9/26/2008 5:56 PM
Transferring Large Files9/19/2008 9:29 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)
      {
         sow.DataSource = "http://scottonwriting.net/sowblog/Rss.aspx";
         sow.DataBind();
      }
   }
</script>

<skm:RssFeed id="sow" runat="server"></skm:RssFeed>


[Return to the article...]