string address = "http://www.google.com/search?q=";
string hello = "Hello, Internet";
WebRequest myReq = WebRequest.Create(address + hello);
WebResponse myResponse = myReq.GetResponse();
myResponse.Close();
string hello = "Hello, Internet";
WebRequest myReq = WebRequest.Create(address + hello);
WebResponse myResponse = myReq.GetResponse();
myResponse.Close();