I have problem with HtmlAgilityPack Turkish charackter encoding.
Asked
Active
Viewed 666 times
0

ibrahim ozboluk
- 421
- 5
- 10
-
[What encoding are you using](http://stackoverflow.com/questions/7883693/htmlagilitypack-how-to-set-custom-encoding-when-loading-pages) when you load the document? – stuartd Jun 14 '16 at 12:26
1 Answers
1
Thank you I solve this issue with the following code
string url = "blabla";
var Webget = new HtmlWeb();
Webget.OverrideEncoding = Encoding.UTF8;
var doc = Webget.Load(url);

ibrahim ozboluk
- 421
- 5
- 10