using System;
using System.Net;
using System.Text;
class Test
{
static void Main()
{
string url = @"http://[Log in to view URL]";
WebClient client = new WebClient();
byte[] pageData = client.DownloadData(url);
string pageHtml = Encoding.Default.GetString(pageData);
Console.WriteLine(pageHtml);
}
}
To embed this project on your website, copy the following code and paste it into your website's HTML: