After uploading trough mvc form data is successfully uploaded to the database.
My form using @using (Html.BeginForm("Create", "Property", FormMethod.Post, new { enctype = "multipart/form-data" }))
But on retrieving data from the databse my image want show, it just displays empty space without image. Any help is welcome.
[HttpPost]
public ActionResult Create(PropertyViewModel newProperty, HttpPostedFileBase image)
{
if (ModelState.IsValid)
{
if (image != null)
{
Image image = new Image();
newProperty.ImageMimeType = image.ContentType;
newProperty.ImageData = new byte[image.ContentLength];
image.InputStream.Read(newProperty.ImageData, 0, image.ContentLength);
}
...commiting and saving, ommiting
//after saving return RedirectToAction("Index");
}
else ... ommiting
}
Data is success. stored in mssql, both ImageData and ImageMimeType. Image data fields in database holds binary data and ImageMimeType image/jpeg On Edit get action (on the view)I need to retrieve this image from the database
<img width="150" height="150" alt="" src="@Url.Action("GetImage", "Property", new { id = Model.Id })" />
Back on the controller for retrieving image as you can see I'm using GetImage
public FileContentResult GetImage(int id)
{
My.Domain.Property data = null;
...ommiting session and transaction
data = session.Get<Property>(id);
...ommiting commit
return File(data.ImageData, data.ImageMimeType);
}
Whats wrong here, on the view I have only empty blank space were the image should appear.