----------------------------------------------------------- New Message on BDOTNET
----------------------------------------------------------- From: rags_rao Message 4 in Discussion cant understand what ur trying to do here......... here's how i remove a node. 1. select the node 2b removed 2. node.prentNode.removeChild(node) as simple as that i c ur xpath is all screwed... DONT USE // in xpath. they r less clear and have a big PERFORMANCE overhead. here's where u've gone wrong: 1. //TradeNameList[./TradeId[.=" + TradeId + "] and //CSI/ID[.=" + ID + "]]" If u thougth //CSI will select CSI which is a desendant of TradeNameList u r wrong for that u wil have to write .//csi/id/.......... (notice that dot it says csi thats a descendant) 2. "//CSI[ID=" + ID + "]" It says select any csi (not necessarily child of the tradenamelist of ur interest) with id=... there is guarantee that ur oToRemove is a child node of oAssignedCSIXml -- "O! great creator of the being grant us one more hour to perform our art and perfect our lives" - Jim Morrison ----------------------------------------------------------- To stop getting this e-mail, or change how often it arrives, go to your E-mail Settings. http://groups.msn.com/bdotnet/_emailsettings.msnw Need help? If you've forgotten your password, please go to Passport Member Services. http://groups.msn.com/_passportredir.msnw?ppmprop=help For other questions or feedback, go to our Contact Us page. http://groups.msn.com/contact If you do not want to receive future e-mail from this MSN group, or if you received this message by mistake, please click the "Remove" link below. On the pre-addressed e-mail message that opens, simply click "Send". Your e-mail address will be deleted from this group's mailing list. mailto:[EMAIL PROTECTED]
