Displaying images from a DB using a Repeater control.

G

Guest

I am trying to display images that are stored in a database, and I am using a
repeater control. What I still use the Response.BinaryWrite method with a
binding expression, if so, what with the code look like?
 
G

Guest

Hi Jim,

Can it be so easy? Think I wrong now?

<ItemTemplate>
<asp:Image ID="myImage" Runat="Server" ImageUrl='<%#
Container.DataItem("myColumn") %>'/>
</ItemTemplate>

If I had wrong, want you create the Image or the ImageUrl in Code-Behind?
 
B

Brian Lowe

Since you refer to the Response.BinaryWrite method it sounds like you have
your image stored as a BLOb/image/binary column in your db table, and not
simply a path to a jpg or gif in the file system.

If that's the case you need an aspx page that takes an image identifier as a
parameter, gets the BLOb column binary content from the db and delivers it
as the HTTP response using the Response.BinaryWrite method.

Your page also needs to add HTTP headers to tell the browser what kind of
content is coming, known as the "MIME Type", e.g. image/gif or image/jpeg.

In your repeater you add an image (<IMG ... />) with its souce set to the
name of your BLOb handler, and passing the image identifier as a parameter.

<ItemTemplate>
<asp:Image ID="myImage" Runat="Server"
ImageUrl='myBLObHandler.aspx?id=<%#
Container.DataItem("myImageIdentifier") %>' />
</ItemTemplate>

I've done this with all sorts of file content, MP3, Word, Excel, PDF, even
HTML, as well as gif, jpg and png images to avoid hassle over file system
resources and write permissions, etc.
 
G

Guest

Thanks Brian, but I am a little confused on how to use the
Response.BinaryWrite from the code behind when the method is called from the
repeater control. What would the method look like in the code behind?

Thanks for your help,
Jim
 
B

Brian Lowe

Jim said:
Thanks Brian, but I am a little confused on how to use the
Response.BinaryWrite from the code behind when the method is called from
the
repeater control. What would the method look like in the code behind?

Step back. There's no need to do it all in one page. In any web page the
HTML gets served in response to the first request for the URL and the
browser then makes further requests to collect any referenced resources,
like stylesheets, scripts, or images.

We're dealing with two separate aspx pages now.

You have one page, lets call it mainpage.aspx that includes a repeater that
includes repeated instances of the image...

The only code that gets called in this page is the databinding to get the
<img ... /> tag rendered once for each data row in the data source. This
results in:
<img src='myBLObHandler.aspx?id=1' />
<img src='myBLObHandler.aspx?id=2' />
<img src='myBLObHandler.aspx?id=...' />
<img src='myBLObHandler.aspx?id=n' />

This goes out as the normal text output to the response stream. The
receiving browser renders the HTML and picks up references to source files
for four images so makes requests back to your server for each image.

This is where the second file comes in.

You need an aspx page called myBLObHandler.aspx to handle the request.

This page has no HTML, its purely code behind.

The code takes the id given in the parameters, uses it to extract the
required binary content from the db, and then streams that binary content
back using Response.BinaryWrite()

Clear?

Brian Lowe
---------@
 
G

Guest

OK. I understand that and why it works. However, when I use the following
code that brings back the content type and image data from the database in a
data set it only displays a blank image with the dreaded red "x".

DataSet ds = new DataSet ();
ds =
objTest.RetrieveTestImage(Convert.ToInt32(Request.QueryString["id"]));
foreach (DataRow dr in ds.Tables [0].Rows) {
Response.ContentType= dr ["strType"].ToString();
Response.BinaryWrite((byte [])dr ["imgTestImage"]);
}

I know that there is data in all of my fields, because I printed them out as
a string in the browser except for the image data where I printed out the
length of the byte array. Any ideas?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,776
Messages
2,569,603
Members
45,188
Latest member
Crypto TaxSoftware

Latest Threads

Top