0

我正在尝试将 ASP.NET 页面转换为 MVC 控制器并出现构建错误。

“System.Web.HttpContextBase”不包含“Current”的定义,并且找不到接受“System.Web.HttpContextBase”类型的第一个参数的扩展方法“Current”

这是我需要从 ASP.NET 转换为 MVC 的代码行

 byte[] param = Request.BinaryRead(HttpContext.Current.Request.ContentLength);

编译器强调:HttpContext。当前.Request.ContentLength

4

2 回答 2

2

尝试使用ControllerContext.HttpContext.Current

于 2012-08-30T20:27:13.857 回答
1

您可以使用 HttpContext.Request.ContentLength

于 2012-08-30T20:27:50.557 回答