Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi I'm trying to return a view that is xml, meaning the content type will be "text/xml", and the view is using ASP.NET MVC razor. Another post ASP.NET MVC and text/xml content type showed how to do it with aspx view. How do I get the same done with razor?

share|improve this question

2 Answers

up vote 17 down vote accepted

I found an example of an rss feed produced with a razor view here:

writing xml in razor syntax

Basically you have to set the Response.ContentType to "text/xml", and then you can just write your xml as if it was html.

You have to scroll down to see the actual code so I'll copy it here:

@{
    var db = Database.OpenFile("Database.sdf");
    var getRss = db.Query("SELECT TOP(5) * FROM Table" );
    Response.ContentType = "text/xml";
}
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel>
        <title>Website name</title>
        <link>website link</link>
        <description>News for website</description>
        <dc:language>en-gb</dc:language>
        <dc:creator>email</dc:creator>
        <dc:rights>Copyright 2010</dc:rights>
        <admin:generatorAgent rdf:resource="http://www.styledna.net/" />
        @foreach (var row in getRss) {
            <item>
                <title>@row.title</title>
                <link>@row.link</link>
                <description> some html desc for the item </description>  
            </item>
        }
    </channel>
</rss>

by Mikesdotnetting

share|improve this answer
3  
oh yuck, who in their right mind would do a sql query in a view? Also the content type really should be set in the action. – CrazyDart May 9 '11 at 23:14
3  
@CrazyDart: Hey, it's an example... and the question is about setting the ContentType, not about what else is done in the view. The OP asks for the razor equivalent of <%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" ContentType="text/xml" %> which is @Response.ContentType = "text/xml". – fretje May 9 '11 at 23:17
1  
@fretje, +1 for answering the OP's question and defining the XML in a Razor view. – Kirk Woll May 9 '11 at 23:22
1  
@CrazyDart: I don't know... for some applications I think this is a much nicer way for outputting xml than fiddling around with xmlwriters or xmlserializers and what not... – fretje May 9 '11 at 23:25
2  
@fretje +1 for an entirely correct answer to the question posed. The query/header setting code is obviously just there to keep the example simple to illustrate the point; not as an example of 'best practices'. – Andrew Barber May 9 '11 at 23:27
show 3 more comments

If you prefer you can instead make the content type change from your view action, like so:

public ActionResult MyAction() {
    Response.ContentType = "text/xml";
    return View();
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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