How do you set the content type for a WebMatrix/Razor Response?

后端 未结 3 1385
你的背包
你的背包 2021-02-19 00:48

I\'d like to return some XML instead of HTML in my WebMatrix cshtml file? How do you change the content type header?

3条回答
  •  醉梦人生
    2021-02-19 01:14

    If you are using ASP.NET MVC, you can choose to make the change in your action method in the controller, like so:

    public ActionResult MyAction() {
        Response.ContentType = "text/xml";
        return View();
    }
    

提交回复
热议问题