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
ではなく、関数自体でこれらすべてを実行します。