0

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.

ghost_mv
  • 1,170
  • 4
  • 20
  • 43

1 Answers1

1

Maybe something like this would help get you started: How to change XML Attribute

Community
  • 1
  • 1
Nate
  • 30,286
  • 23
  • 113
  • 184
  • 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