刚尝试首次使用HtmlAgility Pack并遇到问题。
首先,我从一个字符串变量加载。
string NewsText = dr["Message"].ToString();
HtmlAgilityPack.HtmlDocument htmlDoc = new HtmlAgilityPack.HtmlDocument();
htmlDoc.LoadHtml(NewsText);
//doing my stuff...
然后,我想将所做的更改保存在字符串NewsText中。我怎么做? htmlDoc.toString()无法正常工作。
谢谢!
最佳答案
您正在寻找htmlDoc.DocumentNode.OuterHtml
。