找不到类型或命名空间名称 HttpPostedFileBase
本文关键字:HttpPostedFileBase 命名空间 类型 找不到 | 更新日期: 2023-09-27 18:35:37
>我有以下控制器操作:
public ActionResult BandRegister(BandProfileModel model, HttpPostedFileBase file)
{
return View(_profileService.CreateBandProfile(model, file));
}
这是我的服务:
using System.Linq;
using System.Web.Mvc;
using System.Web;
public BandProfileModel CreateBandProfile(BandProfileModel model, HttpPostedFileBase file)
{
}
但是在我的服务类中,它一直在说:
找不到类型或命名空间名称 HttpPostedFileBase
我不明白为什么。我不是包括所有参考资料吗?
这
听起来像是你缺少对System.Web的引用,这是定义该类型的地方。 检查您的参考资料,并在必要时添加它。