I'd have a ViewImage.aspx page that accepts the ID of the image to store in
your DB then have that page access the image and right it to the response
stream. Your page would then construct tags like
<img src="ViewImage.aspx?ID=123">
Ideally you should store the images on the file system and the path of the
images in the DB.
<> wrote in message
news: ups.com...
> Hello Everybody,
>
> I have a server control that stores an image in the database as an
> image datatype. I would like to display this image (may be in an image
> control) along with other text in a page. What is the best way to
> achieve this functionality. Thanks for all the help in advance.
>
> Regards,
> Chris
>
|