G
Guest
I am working on a solution to store jpeg images in our sql server. I am able
to retrieve the byte array from the database, I can make it into a bitmap but
I cannot figure out how to put the bitmap within a control for rendering on a
webpage. The image control requres a url to render an image, I do not want to
have to create the file on the client's machine.
Is there a control that would work better than image so that I could render
the jpeg to the web page, without using Response.OutputStream.Write(which
clears the rest of the page)??
Thanks in advance for any help.
to retrieve the byte array from the database, I can make it into a bitmap but
I cannot figure out how to put the bitmap within a control for rendering on a
webpage. The image control requres a url to render an image, I do not want to
have to create the file on the client's machine.
Is there a control that would work better than image so that I could render
the jpeg to the web page, without using Response.OutputStream.Write(which
clears the rest of the page)??
Thanks in advance for any help.