What is the best way to return XML from a controller's action in ASP.NET MVC? There is a nice way to return JSON, but not for XML. Do I really need to route the XML through a View, or should I do the not-best-practice way of Response.Write-ing it?
|
feedback
|
|
Use MVCContrib's XmlResult Action. For reference here is their code:
| |||||||||||||
feedback
|
| ||||
feedback
|
|
There is a XmlResult (and much more) in MVC Contrib. Take a look at http://www.codeplex.com/MVCContrib | ||||
|
feedback
|
|
If you are only interested to return xml through a request, and you have your xml "chunk", you can just do (as an action in your controller):
| |||
|
feedback
|