Html Agility - 将解析保存为字符串

时间:2011-02-24 16:15:32

标签: c# parsing html-parsing

第一次尝试使用HtmlAgility Pack并遇到问题。

首先我从字符串变量加载。

string NewsText = dr["Message"].ToString();
HtmlAgilityPack.HtmlDocument htmlDoc = new HtmlAgilityPack.HtmlDocument();
htmlDoc.LoadHtml(NewsText);
//doing my stuff...

然后我想将我的更改保存在字符串NewsText中。我怎么做? htmlDoc.toString()没有用。

谢谢!

1 个答案:

答案 0 :(得分:59)

您正在寻找htmlDoc.DocumentNode.OuterHtml