I've loaded the xmldocument into memory, I've used GetElementsByTagName and I got a match, how do I change the in-memory value directly?
dim list as xmlnodelist
list = doc.GetElemesByTagName("CompanyName")
for each node as xmlnode in list
'''how do I get the node pointer to point to the current list index here so I can do
''' this replace list.node.innertext = NewValue
if node.innertext.contains("StringToSearch") then
'''set the NEW value of innertext of the element in memory
''' but how???
end if
next
Member
78 Points
320 Posts
xml inner text
Aug 07, 2013 06:35 AM|janilane|LINK
hi friends,
I've loaded the xmldocument into memory, I've used GetElementsByTagName and I got a match, how do I change the in-memory value directly?
Thanks in advance