如何在ASP.NET MVC控制器(ActionResult)中更改返回的ContentType

前端之家收集整理的这篇文章主要介绍了如何在ASP.NET MVC控制器(ActionResult)中更改返回的ContentType前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有ASP.NET MVC控制器命名字典与方法ControlsLangJsFile。
方法返回包含JavaScript变量的用户控件(ASCX)的视图。

当我调用方法时,它会返回具有解析字符串的变量,但内容类型是html / text。应该是:application / x-javascript

public ActionResult ControlsLangJsFile()
    {
        return View("~/Views/Dictionary/ControlsLangJsFile.ascx",);
    }

我该如何实现?

解决方法

用户控件不接受ContentType =“text / xml”

解:

public ActionResult ControlsLangJsFile()
    {
        Response.ContentType = "text/javascript";
        return View("~/Views/Dictionary/ControlsLangJsFile.ascx");
    }
原文链接:https://www.f2er.com/aspnet/252206.html

猜你在找的asp.Net相关文章