I have an xml file containing CDATA
I need to update CDATA, as in this example.
I change here to "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
source
share