Zamiast Response.Write
Przechowuj tablicę bajtów w sesji
Session["image"]=(byte[])dreader["image"];
Użyj tego jako źródła swojego image
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%>"' />
Lub po prostu zrób to wszystko w swojej funkcji zamiast Response