我在 HttpPostedFileBase 上遇到错误:



我已经尝试使用 using System.Web 但根本没有用。

编辑 #1

public IActionResult Upload(HttpPostedFileBase file)
    {

        if (file.contentlength > 0)
        {
            var filename = Path.GetFileName(file.filename);
            var path = Path.Combine(Server.mappath("~/app_data/uploads"), filename);
            file.saveas(path);
        }

        return RedirectToAction("index");
    }

我实际上没有引用文件夹 No references folder

最佳答案

您不能混合搭配教程和框架版本。您使用的是 ASP.NET Core 2.0.8,它不包含 HttpPostedFileBase

ASP.NET Core counterpart of HttpPostedFileBase is IFormFile

关于c# - HttpPostedFileBase 缺少引用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50908031/

10-11 01:40