ASP.NET - VB.NET Implementation and Instructions 1. Insert the following code into your page where you would like the RSS feed to display: <% Dim Url As String = "YOURURLHERE" Dim xmlHttp As Object = CreateObject("MSXML2.ServerXMLHTTP") xmlHttp.open("GET", Url, False) xmlHttp.send("") Response.Write(xmlHttp.responseText) xmlHttp = Nothing %> 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.