找不到类型或命名空间名称HttpPostedFileBase

时间:2016-02-21 12:07:10

标签: c# asp.net

我有以下控制器操作:

ffmpeg

这是我的服务:

public ActionResult BandRegister(BandProfileModel model, HttpPostedFileBase file)
{
  return View(_profileService.CreateBandProfile(model, file));
}

但在我的服务类中,它一直在说:

  

无法找到类型或命名空间名称HttpPostedFileBase

我无法理解为什么。我没有包含所有参考文献吗?

1 个答案:

答案 0 :(得分:2)

这听起来像是你错过了对System.Web的引用,System.Web是定义该类型的地方。检查您的参考文献,并在必要时添加它。