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.
-
OK, and what seems to be the problem with this?Oded– Oded2010-12-14 17:26:35 +00:00Commented Dec 14, 2010 at 17:26
-
2Can you provide any code samples or xml schema to assist in assisting you. Right now I can only give you general advicemsarchet– msarchet2010-12-14 17:26:45 +00:00Commented Dec 14, 2010 at 17:26
Add a comment
|
1 Answer
Maybe something like this would help get you started: How to change XML Attribute
1 Comment
ghost_mv
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.