gpt4 book ai didi

c# - 在MVC 3中上传文件始终为null

转载 作者:行者123 更新时间:2023-12-04 14:03:04 24 4
gpt4 key购买 nike

我想创建一个表单,用户可以在其中编辑个人资料,并在需要时上传图片,
这是我的看法

//表格字串@using(Html.BeginForm("EditProfile","Employee",FormMethod.Post,
new { enctype = "multipart/form-data " }))

//输入HTML <input type="file" name="file" id="file"/>
//提交<input type="submit" name="SubmitBtn" value="SaveProfile" />
<input type="submit" name="SubmitBtn" value="Cancel" />

现在我的 Controller

    //Profile Modification
[Authorize]
[HttpPost]
public ActionResult EditProfile(employer model, string SubmitBtn,HttpFileCollection file)
{
switch (SubmitBtn)
{
case "SaveProfile":
try
{
if (ModelState.IsValid)
{
//the file is always null
if (file != null)
{
//Function I want to Apply on file
model.logoname = logouploded(file);
return RedirectToAction("Profile", "Employer");
}
return RedirectToAction("EditProfile");
}
//ChangeEmployeeProfile(model);

}
catch (Exception ex)
{
ViewBag.warn = ex.Message;
return View(model);
}
break;
case "Cancel":
return RedirectToAction("index");
}
return View(model);
}

现在无论我上传什么文件,文件总是空的
我还尝试了HttpFileCollectionBase作为Action Function中的参数,但文件为null

提及员工模型仅包含图像文件名
因为我只想将图像名称保存在数据库中。

最佳答案

将HttpFileCollection类型更改为HttpPostedFileBase

关于c# - 在MVC 3中上传文件始终为null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13740196/

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