I have the following image in my aspx page
\"
>
Try the following in your ProcessRequest method:
context.Response.ContentType = "image";
using (System.IO.MemoryStream str = new System.IO.MemoryStream(objData.ToArray(), true))
{
str.Write(objData.ToArray(), 0, objData.ToArray().Length);
Byte[] bytes = str.ToArray();
context.Response.BinaryWrite(bytes);
}
where objData is the value you are reading from the database