ContentResult指令或程序集丢失了吗?

时间:2013-02-26 17:31:50

标签: c# asp.net

我有以下代码:

            var resultData = new { d = sqlObject.ToArray() };
            ContentResult result = new ContentResult();
            result.Content = serializer.Serialize(resultData);
            result.ContentType = "application/json";
            return result;

但是他们一直提示无法找到类型或命名空间名称。你错过了指令或装配吗?

有任何解决方案吗? 我正在开发asp.net

1 个答案:

答案 0 :(得分:0)

从NuGet程序包管理器中

在项目中安装Microsoft.AspNet.Mvc程序包。