How do you login to a webpage and retrieve its content in C#?
Try this:
public string GetContent(string url) { using (System.Net.WebClient client =new System.Net.WebClient()) { return client.DownloadString(url); } }