I have looked through several threads here on how to locate an XML node and change an attribute. However, I cannot find a solution to my problem:
I have an XML node which has several nodes under it with the same name (but different attributes). For example:
<Configuration>
<ConfigOptions>
<add key="Localize" value="Off" />
<add key="Cache" value="Database" />
<add key= etc........
I need to use a simple VBScript to locate the <add>
node where key="Cache"
and then change the value to something else.