MVC从数据库中检索二进制图像下载图像,但我需要显示它

时间:2012-09-29 07:45:51

标签: asp.net-mvc-3

你好我们正在从数据库中检索图像,它存储为二进制字段 这是我使用的代码

public FileContentResult GetImage(int? id)
{
    byte[] img=.......//get image from db
    string imgType = "image/jpeg";
    return File(img, imgType);
}

但问题是代码下载图像,我需要显示图像不下载,

任何人都可以帮我这个吗?

1 个答案:

答案 0 :(得分:0)

我错误地设置了内容类型 - 确保它是image/jpegimage/png等等。