Problem with displaying image from DB using asp.net MVC 2

后端 未结 5 1853
情话喂你
情话喂你 2021-01-17 00:41

I\'m having trouble with displaying image from db. I think that method for saving image is working, because I see in DB that varbinary fields have some value, and that image

5条回答
  •  青春惊慌失措
    2021-01-17 00:55

    I needed to register routes in my global.cs file like Mathias suggested.

    Also i needed to modify action in my controller to this :

    public FileContentResult GetImage(int productID)
        {
            Product product = products.GetByID(productID);
    
            return File(product.ImageData.ToArray(), product.ImageMimeType);
        }    
    

    I wish thank you all for your fast answers...

提交回复
热议问题