Thay vì Response.Write
Lưu trữ mảng byte trong một phiên
Session["image"]=(byte[])dreader["image"];
Sử dụng cái này làm nguồn của image
của bạn
byte[] imgSrc=(byte[])Session["image"]
string imgSrcStr= Convert.ToBase64String(imgSrc);
string imageSrc = string.Format("data:image/gif;base64,{0}", imgSrcStr);
In the view:
<img src='"<%=imageSrc%>"' />
Hoặc chỉ cần thực hiện tất cả điều này trong chính hàm của bạn thay vì Response