我正在尝试将图像上传到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>
有趣的是,这些完全相同的代码可在另一个项目中使用。你能帮我吗?