gpt4 book ai didi

c# - HttpPostedFileBase 缺少引用

转载 作者:太空宇宙 更新时间:2023-11-03 20:55:36 28 4
gpt4 key购买 nike

我在 HttpPostedFileBase 上遇到错误:

The type or namespace name 'HttpPostedFileBase'could not be found(are you missing a using directive or an assembly reference?)

我已经尝试过使用 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/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com