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
Determining Whether a String Is Contained Within a String Array (Case Insensitive)3/9/2010 9:14 AM
FIX: It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS2/17/2010 8:39 AM
January's Toolbox Column Now Online1/8/2010 4:57 AM
SOLUTION: Outlook Is Stripping Line Breaks From Plain-Text Emails Auto-Generated From My ASP.NET Application!12/8/2009 6:36 AM
December's Toolbox Column Now Online12/1/2009 7:52 AM
Configuring the PasswordRecovery To Send Email to an SSL-Enabled SMTP Client11/10/2009 7:54 AM
November's Toolbox Column Now Online11/5/2009 7:18 AM
TIP: How To Generate a Fully Qualified URL in ASP.NET (E.g., http://www.yourserver.com/folder/file.aspx)10/26/2009 11:59 AM
Rich Tooltips With jQuery10/23/2009 11:17 AM
SOLUTION: JSLint.VS Add-In Always Reports "No Errors" Even For Invalid JavaScript Files10/15/2009 11:49 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...]