在ASP.Net MVC中将图像上传到数据库的问题

时间:2019-05-30 12:57:59

标签: c# asp.net-mvc image

我正在尝试将图像上传到MVC中的数据库。上传时没有任何错误,但是在数据库中看起来为NULL。

Create.cshtml

onSearch={(event) => {
  this.searchHeader.hide()
   // Send data to Pesquisa
}}
<div class="form-group">
     @Html.LabelFor(model => model.Foto, htmlAttributes: new { @class = "control-label col-md-2" })
     <div class="col-md-10">
          <input type="file" name="ImageData" id="ImageData" />
     </div>
</div>

有趣的是,这些完全相同的代码可在另一个项目中使用。你能帮我吗?

0 个答案:

没有答案