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.NET
Using Templates to Display Boolean Values as Yes/No Options11/21/2011 8:11 PM
Searching SQL Server Stored Procedure and Trigger Text9/30/2011 12:16 PM
ASP.NET Training in San Diego on Saturday, September 24th9/15/2011 2:19 PM
Full Day ASP.NET MVC 3 Training Event in Los Angeles on August 27th, 20118/18/2011 12:28 AM
Creating a Currency Masked TextBox with On-the-Fly Currency Formatting6/24/2011 7:21 PM
A Synchronized Visual Studio Crash6/20/2011 3:52 PM
Export an ADO.NET DataTable to Excel using NPOI6/7/2011 7:10 PM
Full Day ASP.NET MVC 3 Training Event in Los Angeles on May 21st, 20115/12/2011 12:57 PM
Terse Markup and CSS for Aligned Form Labels and Inputs4/18/2011 1:46 PM
I’ve Written My Last Article for 4GuysFromRolla3/29/2011 3:32 PM


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