HI
when it deletes the element  then it insert the text element with null
value  i.e
<root>
     <child>
          <delete sr="1">may have more child </delete>
          <delete sr="2">may have more child </delete>

     </child>
     <child2> hvfgdfdfghfghgf </child2>
</root>
now use sun's dom pareser which is based opon SAX to delete the bith delete
elements then it gives
<root>
     <child>


     </child>
     <child2> hvfgdfdfghfghgf </child2>
</root>

insted of giving
<root>
     <child/>
     <child2> hvfgdfdfghfghgf </child2>
</root>

to deletes these elements i am useing removeChild() method.  please write
the solution/comments in detail
thanx
kuldip

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to