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.

2
  • OK, and what seems to be the problem with this? Commented Dec 14, 2010 at 17:26
  • 2
    Can you provide any code samples or xml schema to assist in assisting you. Right now I can only give you general advice Commented Dec 14, 2010 at 17:26

1 Answer 1

1

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

Sign up to request clarification or add additional context in comments.

1 Comment

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.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.