开发者

How to set contenttype in razor (CSHTML)?

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?


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

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


That will work I just tested it, you can also add the following line to your cshtml:

Response.ContentType = "application/javascript";

so that it looks something like this:

@{
    ViewBag.Title = "Home Page";
    Response.ContentType = "application/javascript";
}

It just depends on where you prefer to make the change.


Use this:

return Content(json, "application/json");
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜