Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

What exactly gets rendered as the src in the result HTML? If you hit that URL directly, what gets transferred (status, content, type) ?

As aside note, copying the entire image in memory every time can be quite inefficient. Try this instead:

share|improve this answer
in the result HTML i element is rendered with <img width="150" height="150" src="/Property/GetImage/75" alt=""> When I'm hit url directly on view page info I got Type image/jpeg, render mode: quirk mode, 75 (JPEG Image, 1024 × 768 pixels) - Scaled (87%): etc. Thank you for links I'l give it a shot – BobRock Mar 9 '12 at 22:33
Solved, problem was in the mapping, cause I'm using nhibernate. I rewrite mapping for the ImageDate property Map(x => x.ImageData).CustomSqlType("VARBINARY(MAX)").Length(160000); – BobRock Mar 10 '12 at 16:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.