Linq to XML更新CDATA节点的方法
时间:2011-04-28 来源:walkerwang
假如你的一个节点设为了CDATA类型,如果你用XElement的value="new value"的方法,你会发现<![CDATA这个标签不见了
所以我们就把方法改为value="<![CDATA"+new value+"]]>",结果却发现被html转码了
上网找到解决方法:
//Since you're interested in CDATA sections, you'll need to go a bit deeper in the API and work with nodes instead of values: XElement article = updateArticle.Element("article"); if (null != article) { article.ReplaceNodes(new XCData(txtArticle.Text)); } else { updateArticle.Add(new XElement("article", new XCData(txtArticle.Text))); } //Ion
相关阅读 更多 +