vote up 6 vote down star

I'm able to return JSON and partial views (html) as a valid ActionResult, but how would one return an XML string?

flag

77% accept rate

3 Answers

vote up 5 vote down check

You could use return this.Content(xmlString, "text/xml"); to return a built XML string from an action.

link|flag
2  
This is the reason I love stackoverflow- 100% spot on answers in minutes! – Toran Billups May 18 at 17:05
vote up 2 vote down

Use the XmlResult from MvcContrib on Codeplex.

Also this seems to be a duplicate question.

link|flag
vote up 0 vote down

For JSON/XML I have written an XML/JSON Action Filter that makes it very easy to tackle without handling special cases in your action handler (which is what you seem to be doing).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.