我在视图中有这个表格
@using (Html.BeginForm("AddOneImage", "ApartmentImages", FormMethod.Post))
{
<p>
@Html.TextBox("image", "", new { placeholder = "Uploadt New Image", type = "file"})
<input type="submit" value="Add" />
</p>
}
它可以工作,但它会将图像的名称发送给控制器。
我需要发送该图片的字节数组或 base64
我尝试添加此标记
src="data:image;base64,@System.Convert.ToBase64String(image)
到表单,但仍然无效