I have the following:
string html_string = "http://www.google.com/search?sourceid=chrome&ie=UTF-8&q=pharma";
string html;
html = new WebClient().DownloadString(html_string);
and when I get the length of HTML, it's returning only the first 28435 characters.
Is it possible that Google is not allowing webclient access?