My personal web site is simply an live feed from RedYawning. This is how I did it, using ASP.NET.
<%@ Import Namespace = “System.Net” %>
<%@ Import Namespace = “System.Net.Sockets” %>
<%@ Import Namespace = “System.IO” %>
<%
HttpWebRequest http = (HttpWebRequest)
WebRequest.Create(“http://www.redyawning.com/user.aspx?userid=1“);
http.UserAgent = “FullEnergyWebGrab/1.0”;
HttpWebResponse response = (HttpWebResponse)http.GetResponse();
Stream s = response.GetResponseStream();
StreamReader read = new StreamReader(s);
string html = read.ReadToEnd();
Response.Write(html);
response.Close();
read.Close();
%>
And nested it the regular HTML shell of the site.