WebClient webClient = new WebClient();
webClient.Credentials = CredentialCache.DefaultCredentials;
byte[] htmlcode = webClient.DownloadData(url);
webClient.Dispose();
string html = Encoding.GetEncoding(encoding).GetString(htmlcode);
return html;
在本地调试一切正常,但是传到服务器上就出现这个问题,不知道哪位大哥遇到过这种问题,帮忙处理一下。
可能是服务器的DNs解析不了那个域名吧,在服务器上ping下试试
先把域名转成IP地址,再进行下载就好了