seattledev
Programmer
Hi there,
I am trying to use an xslt to wrap some XML in a CDATA element. Such as transforming:
<A>
<B val1="1"></B>
<C>some text</C>
</A>
to:
<A><![CDATA[
<B val1="1"></B>
<C>some text</C>
]]
</A>
I've done a fair amount of googling and can't seem to find out how to do this..
Thanks,
Craig
I am trying to use an xslt to wrap some XML in a CDATA element. Such as transforming:
<A>
<B val1="1"></B>
<C>some text</C>
</A>
to:
<A><![CDATA[
<B val1="1"></B>
<C>some text</C>
]]
</A>
I've done a fair amount of googling and can't seem to find out how to do this..
Thanks,
Craig