<sarcasm>
Open the file in notepad, highlight "Information1", type the new data, click File->Save.
</sarcasm> ;)
Now for the answer I assume you really want...
I think this should be pretty close (from memory).
Code:
XmlDocument objDoc = new XmlDocument();
objDoc.Load("info.xml");
XmlNode objNode = objDoc.SelectSingleNode("/Document/Node1");
objNode.Value = "New value";
objDoc.Save("info.xml");
-
Peter