csssuperman
MIS
Hi
Any code to help delte from a tag(s) from an xml doc
Doin the coding in asp.net
Many thanks!!!
Any code to help delte from a tag(s) from an xml doc
Doin the coding in asp.net
Many thanks!!!
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
XmlDocument xml = new XmlDocument();
xml.LoadXml("<grub><pizza><topping>sausage</topping><topping>onions</topping></pizza><hotd><topping>ketchup</topping><topping>onions</topping></hotd></grub>");
XmlNode node = xml.SelectSingleNode("grub/pizza");
node.RemoveChild(node.ChildNodes[0]);
MessageBox.Show(xml.InnerXml);