Good afternoon,
Quick and what I hope is an easy question... I have an XML file that is
holding constant values. On occasion there will be times where some of
those values will need to be updated. Is it possible to do this
programatically with ASP.NET?
As an example, a system status indicator constant is contained in the XML
file:
<SYS_STAT>No Problems to Report</SYS_STAT>
and on those hopefully rare occasions where a problem is found, the "flag"
needs to be switched to:
<SYS_STAT>Problems reported in Martin Country</SYS_STAT>
I have managed to get the file loaded, then with my total lack of knowledge
<smile> with .NET and XML, I am hitting a wall as to how to edit it. The
XML file contains upwards of 50 constants.
For arguments sake, lets call the xml file, c:\stat.xml
Many thanks in advance.