J
Jonathan
I have a client solution that requires data and associated files to be
stored with data in a database. As such, I have a situation where JPEG
thumbnails/images that are stored as BLOBs (image data-type) in a SQL DB
need to be written to an ASP.NET page. The BLOB is actually wrapped by a
class written in C#, BlobObj, which can return a byte-array containing the
image-bytes. I can successfully write the image to the page using the
Response.WriteBinary function, writing the byte-array return from my BlobObj
wrapper class. I cannot, though, successfully write the image to a page
with other content; the image seems to overwrite all other content. Any
ideas?
stored with data in a database. As such, I have a situation where JPEG
thumbnails/images that are stored as BLOBs (image data-type) in a SQL DB
need to be written to an ASP.NET page. The BLOB is actually wrapped by a
class written in C#, BlobObj, which can return a byte-array containing the
image-bytes. I can successfully write the image to the page using the
Response.WriteBinary function, writing the byte-array return from my BlobObj
wrapper class. I cannot, though, successfully write the image to a page
with other content; the image seems to overwrite all other content. Any
ideas?