hello folks.,
i have xml file which contains CDATA
i need to update the CDATA as like in this example.
i am modifying "span" here
<elements>
<![CDATA[-div[id|dir|class|align|style],-span[class|align]]]>
</elements>
should be updated as
<elements>
<![CDATA[-div[id|dir|class|align|style],-span[class|align|style]]]>
</elements>
i am using framework 2.0.. how to do this using xmldocument.
thank you