Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Participant
1150 Points
230 Posts
Microsoft
Aug 06, 2003 08:36 PM|LINK
XmlDocument doc = new XmlDocument(); doc.LoadXml ("baz"); XmlNode bar = doc.SelectSingleNode("/foo/bar"); bar.InnerXml = "it works!";
kaevans
Participant
1150 Points
230 Posts
Microsoft
Re: Appending a Node
Aug 06, 2003 08:36 PM|LINK
XmlDocument doc = new XmlDocument(); doc.LoadXml ("baz"); XmlNode bar = doc.SelectSingleNode("/foo/bar"); bar.InnerXml = "it works!";