Response.Writeの代わりに バイト配列をセッションに格納する
Session["image"]=(byte[])dreader["image"];
これを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%>"' />
または、Responseではなく、関数自体でこれらすべてを実行します。