0

我有这个表格

@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)

到表格,但仍然没有任何效果

4

0 回答 0