Hi everyone,
I have an xml doc defined as
<Body>Stuff stuff stuff <FormatStuff> alsdkfafkafkaf </FormatStuff> </Body>
Now, this is apparently valid xml (which I wouldn't have guessed). I want to return just the information in Body, and a separate XElement for <FormatStuff>
, so it would look like
Stuff, Stuff, Stuff
alsdkfafkafkaf
the .Value of the Body xelement obviously returns everything. Thanks for any help.