Místo Response.Write
Uložte pole bajtů v relaci
Session["image"]=(byte[])dreader["image"];
Použijte toto jako zdroj vašeho 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%>"' />
Nebo to vše jednoduše udělejte v samotné funkci namísto Response