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
Try to change you method to:
public void GetImage(int productID) { Product product = products.GetByID(productID); Response.ContentType = "image/jpeg"; Response.BinaryWrite(product.ImageData.ToArray()); }