Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

30
votes
12answers
15k views

Best way to get InnerXml of an XElement?

What's the best way to get the contents of the mixed "body" element in the code below? The element might contain either XHTML or text, but I just want its contents in string form. The XmlElement ...
3
votes
5answers
924 views

PHP SimpleXML get innerXML

I need to get the HTML contents of answer in this bit of XML: <qa> <question>Who are you?</question> <answer>Who who, <strong>who who</strong>, ...
0
votes
2answers
271 views

XPathSelectElement(“/root/title”).ToString() selects also the xml name around

When I do XPathSelectElement("/root/title").ToString() I get for example <title>this is an <strong>example</strong></title>. But I don't want to get <title> around ...
0
votes
1answer
349 views

Setting InnerXml for XmlDocument causes missing End-Tag

XmlDocument doc = new XmlDocument(); doc.AppendChild(doc.CreateElement("Foo")); doc.DocumentElement.InnerXml = "Test"; StringBuilder result = new StringBuilder(); ...