How to remove the element ?
HI All,
I am trying to parse the data using xml,
requirement,
<one>
<two>
<three ss=1>123</three>
<three ss=2>123</three>
<three ss=1>124</three>
</two>
</one>
Code:
CreateElement(curr1,...) //for the first "three" element
CreateElement(curr1,...)//for the second "three" element
but the problem is when i update the value of ss in the 2nd "three" element, the previous element's ss gets updated.
How do i release the element(or node) and reuse the same node name for creating the next element?
Started By masg on Oct 10, 2005 at 5:22:47 AM |