.NET获得远程网页内容
.NET获得远程网页内容
现在有是需要获得运程网站网页的内容,比如采集就需要,如何获得呢,下载提供一个伴音的代码:
string gurl = “http://www.Flexzoo.com/“;
WebClient wc = new WebClient();
wc.Credentials = CredentialCache.DefaultCredentials;
Byte[] pageData = wc.DownloadData(gurl);
string getHTML = Encoding.UTF8.GetString(pageData);
Response.Write(getHTML);
此输出的就是运程网页的内容了。