I have been trying to make a simple program that grabs the ip text of ipchicken.com. However, when I run it I get a bunch of HTML and not the IP. Here is what I have so far.
{
WebClient something = new WebClient();
string text = something.DownloadString("http://ipchicken.com");
label1.Text = text;
}
What am I doing wrong?