tags:

views:

38

answers:

2

How can I update the value of tags in an XML file using System.Xml?

+1  A: 

You can't update values in the file directly.

You load the file into an XmlDocument object, manipulate the nodes in the object, then save the document back to the same file.

Guffa
thanks, i figured it now out how to do it.
Luke
A: 

Here is a resource that might also help you.

bluevoodoo1