MSXML.DOMDocument Questions

1

How to remove the values of xml tags null without removing the tag names?
Hi, I have the following xml : … …. <A> <B> <C>11122</C> <D>loop</D> <E>30-03-05</E> <F>integer</F> <G>decimal</G> <H /> </B> </A> … …. I need to remove all the values under <payment_details> so that the xml will be in the desired format as below: … …. <A> <B> <C></C> <D></D> <E></E> <F></F> <G></G> <H /> </B> [...]

Answer Question   |  June 25, 2009  12:00 PM
MSXML.DOMDocument, NULL values, XML
asked by:
5 pts.

1