My specific case is that I have an XML result from an ASMX service. I need to scan this XML string for a specific node and "ToLower()" the value in the node. I can't access the service to simply change the return at that level.
Asked
Active
Viewed 2,073 times
1 Answers
1
Maybe something like this would help get you started: How to change XML Attribute
-
Thanks Nate, knew there was a simple way to do it. Just loaded the string into an XmlDocument object, got elements by tag name, changed value and rewrote XML to a new string. – ghost_mv Dec 14 '10 at 17:40