I'd like to return some XML instead of HTML in my WebMatrix cshtml file? How do you change the content type header?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Use the Response.ContentType property at the top of your .cshtml file then include the XML in the content of the view:
|
|||||||||
|
|
At the top of your Razor file, set the ContentType of the Response object:
|
|||||||
|
|
If you are using ASP.NET MVC, you can choose to make the change in your action method in the controller, like so:
|
|||||||
|