ASP.NET - C# Implementation Instructions 1. Insert the following code into your page where you want the feed to display: <% string url = "YOURURLHERE"; string result = ""; System.Net.HttpWebRequest wreq = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(url); wreq.Method = "GET"; wreq.Timeout = 3000; System.Net.HttpWebResponse wr = (System.Net.HttpWebResponse)wreq.GetResponse(); if (wr.StatusCode == System.Net.HttpStatusCode.OK) { System.IO.Stream s = wr.GetResponseStream(); System.Text.Encoding enc = System.Text.Encoding.GetEncoding("utf-8"); System.IO.StreamReader readStream = new System.IO.StreamReader(s, enc); result = readStream.ReadToEnd(); } Response.Write(result); %> 2. Change the placeholder YOURURLHERE to the url for your benefit RSS feed. This can be either the iFrame link from the Content Manager, or the Multi-Feed URL discussed in the Introduction to Links section of RSS.NewBenefits.com.