I
ichor
hi
i have a blob field in my database and am able to display it on my asp.net
page
i would like to know how can i position the Blob on the page or can i use an
image object?
byte[] Picture;
Picture = (byte[])dr["logo"];
Response.Buffer=true;
Response.ContentType = "Image/JPEG"; //after i set this i cant even get a
response.write to work on mypage.
Response.BinaryWrite(Picture);
is there any way i can put this picture in an imagebutton?
thanx
i have a blob field in my database and am able to display it on my asp.net
page
i would like to know how can i position the Blob on the page or can i use an
image object?
byte[] Picture;
Picture = (byte[])dr["logo"];
Response.Buffer=true;
Response.ContentType = "Image/JPEG"; //after i set this i cant even get a
response.write to work on mypage.
Response.BinaryWrite(Picture);
is there any way i can put this picture in an imagebutton?
thanx