In line with my comment, I created a method that takes in a cookiejar (this allows for a persistent session across requests) a uri, and parameters and does a post to the URI.
private static string PerformPostRequest(string uri, CookieContainer cookieJar, string parameters)
{
HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(uri);
request.ContentType = "application/x-www-form-urlencoded";
request.Method = "POST";
request.CookieContainer = cookieJar;
byte[] bytes = Encoding.ASCII.GetBytes(parameters);
Stream os = null;
request.ContentLength = bytes.Length;
os = request.GetRequestStream();
os.Write(bytes, 0, bytes.Length);
if (os != null)
{
os.Close();
}
HttpWebResponse webResponse = (HttpWebResponse)request.GetResponse();
StreamReader sr = new StreamReader(webResponse.GetResponseStream());
return sr.ReadToEnd().Trim();
}
After posting the log in information that you need to the login page, you could then perform a get request on the next page, and parse the data there.
private static string PerformGetRequest(string uri, CookieContainer cookieJar)
{
HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(uri);
request.ContentType = "application/x-www-form-urlencoded";
request.Method = "GET";
request.CookieContainer = cookieJar;
HttpWebResponse webResponse = (HttpWebResponse)request.GetResponse();
StreamReader sr = new StreamReader(webResponse.GetResponseStream());
return sr.ReadToEnd().Trim();
}