How to set contenttype in razor (CSHTML)?

前端 未结 3 446
孤街浪徒
孤街浪徒 2021-02-04 08:08

In classic ASP.NET Web Forms view engine, we can set the ContentType in the .aspx page to the desired type.

Is there a direct/recommended equivalent in Razor?

3条回答
  •  时光说笑
    2021-02-04 09:00

    You should set a different content type in your action method.

    public ActionResult MyAction() {
        Response.ContentType = "something";
        return View();
    }
    

提交回复
热议问题