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
錯誤處理的東西。HTMLAgilityPack Asp.net C#錯誤處理
雖然在url3地址「http://www.bigpara.com/borsa/gunun-ozeti/」刷新自己在我的網站是給錯誤消息。
錯誤消息:
System.NullReferenceException和遠程服務器沒有解決
那我該怎麼辦? 和下一個問題是
編碼問題
如何**encoding(UTF-8)**
格式化字符串。
特殊字符不能正常顯示。
我如何防止這種錯誤?
非常感謝。
無法用您提供的代碼重現異常。 –