0
我想從數據庫顯示的圖像問題在瀏覽器中呈現的圖像FileContentResult
我在視圖中的動作
public FileContentResult GetImage(string param)
{
type obj = _someRepository.GetType(param);
if (obj!= null && obj.Image!= null)
{
return File(obj.Image.ToArray(), obj.Image.MimeType);
}
return "some default image";
}
我
< img src="<%:Url.Action("GetImage","ControllerName",new { param= somevalue })%>" alt="some text"
width="100px" height="100px" />
我也有
(Html.BeginForm("actionname", "controllername", FormMethod.Post, new { enctype = "multipart/form-data" })
集。
的圖像數據是從數據庫中獲取,但我看不到在瀏覽器中的圖像, 是有,我失去了一些東西?