To display image in web page you have to:
Select image content from BLOB:
1. Select column_with_image_blob from table where ...
Create a page with proper content type for example (if image is jpg):
Header ("Content-type: image/jpeg");
and then to print image content in page:
print base64_encode($image);
I am not sure what is the right syntaxix in asp but the steps are these
Main Topics
Browse All Topics





by: jkdt0077Posted on 2009-06-12 at 02:27:27ID: 24610458
http://support.microsoft.c om/kb/1733 08
Have a look at that, it should be exactly what you need!