You can use the WebClient
Using System.Net;
using(WebClient client = new WebClient()) {
string downloadString = client.DownloadString("http://www.gooogle.com");
}
You can use the WebClient
Using System.Net;
using(WebClient client = new WebClient()) {
string downloadString = client.DownloadString("http://www.gooogle.com");
}