S
shin
hi i am trying to output an image which i have in a database.
but this gives me errors
byte[] Picture;
Picture = (dr["logo"]); //cannot convert from object to byte
Response.Buffer=true;
Response.ContentType = "Image/JPEG";
Response.BinaryWrite(Picture);
how do i output images at a specific position?
do i need to use an image control?
but this gives me errors
byte[] Picture;
Picture = (dr["logo"]); //cannot convert from object to byte
Response.Buffer=true;
Response.ContentType = "Image/JPEG";
Response.BinaryWrite(Picture);
how do i output images at a specific position?
do i need to use an image control?