using System;
using System.Net;
namespace ConsoleApplication_C_Sharp
{
static class Program
{
static void Main(string[] args)
{
using (WebClient client = new WebClient())
{
string html = client.DownloadString("http://seek4info.com/");
Console.WriteLine(html);
}
}
}
}
/*
run:
<!doctype html>
<html>
<head>
<title>Seek.4Info - Relevant Search Engine</title> <meta http-equ
iv="Content-type" content="text/html; charset=utf-8">
<meta name="keywords" content="Search, Query, Search Engine, Relevant, L
inks, Urls, Info, Find, Information">
<meta name="description" content="Relevant Links & Information On An
y Keyword">
...
*/