XML Parsing Problem when using MSXML
Hi,
I am having a provider that gives news as XML. Please see the xml below.
<StoryText>
<p lede="true">WE'VE been swamped with letters from readers trapped in "zombie" companies - insurance firms which have closed to new customers but linger on while their existing customers' savings plans run off.</p><p lede="true">Many have stopped paying bonuses and future returns are likely to be low as the managers will follow a minimum-risk policy to ensure they can meet any guaranteed benefits.</p><p>THANKS to my team of independent financial advisers John Cooper of Weston Financial Group, John Stewart of PMI and Rachel Twigg of Inter-Alliance Group.</p>
</StoryText>
My problem is that when i create a node and then try to access the text using
NodeValue = oReadStoryNode.selectSingleNode("StoryText").nodeT ypedValue
I get a text with the <p></p> tags removed. Is there any way to overcome this problem? This is hampering my work
|