Kevin,
Is this page created on the fly in page_load? Or, is one created in the
project and then just instatiated as many times as needed?

Can you point me to some code that could demonstrate this technique?

I need to display an image which is save in a db with a caption from the db
underneth the image. I can have 0 to many images on the page...

Thanks in advance.
Blake

"Kevin Spencer" <kevin@takempis.com> wrote in message
news:emkAoJsADHA.2328@TK2MSFTNGP10.phx.gbl...
> Hi Terry,
>
> Because the page that sends the image must set the Response.ContentType
> property to "image/gif" you MUST have an ASPX page that displays only the
> image. That page can be referenced in another ASPX page as if it were an
> actual image. Example:
>
> <img src="Image.aspx">
>
> HTH,
>
> Kevin Spencer
> Microsoft FrontPage MVP
> Internet Developer
> [url]http://www.takempis.com[/url]
> There is an exception to every rule...
> Except this one.
>
> "Terry" <tkades@powerstrat.com> wrote in message
> news:e83P7TrADHA.1548@TK2MSFTNGP12.phx.gbl...
> > Hi,
> > 1- How to set Image source from memorystream in HTML page without
> saving
> > it in the
> > server and i musnt be alone the page ( with other WebControls )
> > 2 - How to save image from memorystream to Client Machin in web
> > application
> >
> > Note: i know how to save it from the momery to the page but it only
shows
> > the image .
> >
> > Response.ContentType="image/gif";
> > // Send the image to the viewer.
> > b.Save(Response.OutputStream , b.RawFormat );
> > thks in Advance,
> > Terry.
> >
> >
>
>