Whatever message this page gives is out now! Go check it out!
XmlUpdate(node,xpath,value)| Parameter | Description |
| node | The XML node where you must update a value. |
| xpath | XPath expression to locate the XML fragment to update. |
| value | The new value. |
<cfxml variable="xmlData">
<root>
<item id="1">Item 1</item>
<item id="2">Item 2</item>
<item id="3">Item 3</item>
hello
</root>
</cfxml>
<cfscript>
writeDump(xmlData)
writeOutput("<br/>")
xmlUpdate(xmlData.root,"xmlText","hello again!")
writeDump(xmlData)
</cfscript>