NNZ_KiwisMar 13, 2007Post #1 Tuesday, March 13, 2007 8:34 PM How can I allow an HTML tag to sit inside a XML node??? ie: <People> <Text>test gfsdfgfdg <p>wfdsgdfgsa</p>dsdgf </Text> </People>
NogDogMar 13, 2007Post #2 Tuesday, March 13, 2007 9:40 PM You could mark the contents as CDATA: <Text><![CDATA[test gfsdfgfdg <p>wfdsgdfgsa</p>dsdgf]]></Text>