Uri url3 = new Uri("http://www.bigpara.com/borsa/gunun-ozeti/");
WebClient client3 = new WebClient();
string html3 = client3.DownloadString(url3);
HtmlAgilityPack.HtmlDocument dokuman3 = new HtmlAgilityPack.HtmlDocument();
dokuman3.LoadHtml(html3);
大家好,我想问你一些关于htmlagilitypack
错误处理的问题。
虽然在 url3 地址“ http://www.bigpara.com/borsa/gunun-ozeti/ ”在我的网站中自我刷新是给出错误消息。
错误消息是:
System.NullReferenceException 和远程服务器未解析
我应该做些什么 ?下一个问题是
编码问题
如何**encoding(UTF-8)**
格式化字符串。
特殊字符无法正常显示。
我如何防止这个错误?
非常感谢你。