HttpPostedFileBase在ASP.NET MVC中返回NULL

时间:2018-08-02 18:55:51

标签: c# asp.net-mvc

帮助DECLARE @big_string varchar(max) = ''; SELECT @big_string += x.s + ',' FROM (VALUES ('string1'), ('string2'), ('string3')) AS x(s); SELECT @big_string; -- OUTPUT: -- string1,string2,string3, 返回HttpPostedFileBase,我已经尝试了好几种方法,并且已经在多个论坛中进行了搜索,但是仍然有效。

这是我的代码

NULL

控制器

 @using (Html.BeginForm("NuevoProveedor", "Account", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
    @Html.AntiForgeryToken()
    @Html.ValidationSummary(true)
    <center>
        <form method="post" enctype="multipart/form-data">
            <input type="file" id="btnFile" name="file" />
            <input type="submit" value="Save" id="btnSave" />
        </form>
    </center>
}

1 个答案:

答案 0 :(得分:0)

您可以上传文件,并将其网址保存在数据库表中,如下所示:

查看:

@using(Html.BeginForm("NuevoProveedor", "Account",FormMethod.Post,new {enctype="multipart/form-data"}))
{
    ...
    <div class="editor-field">
         <input type="file" id="btnFile" name="file" />
        <input type="submit" value="Save" id="btnSave" />
    </div>
    ...
}

操作:

[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public ActionResult NuevoProveedor(SubirArchivoModelo model)
{
    if (ModelState.IsValid)
    {
        if(Request.Files.Count > 0)
        {
            HttpPostedFileBase file = Request.Files[0];
            if (file.ContentLength > 0) 
            {
                var fileName = Path.GetFileName(file.FileName);
                model.FileLocation = Path.Combine(
                    Server.MapPath("~/App_Data/uploads"), fileName);
                file.SaveAs(model.FileLocation);
            }
            //db.TableEntity.Add(model);
            //db.SaveChanges();
            //return RedirectToAction("Index");
        }
    }

    return View("UsuarioNuevo");
}