I have the following link in an asp page:
do while loop
<TD BGcolor ="f7efde" align=center>
<font style ="arial narrow" size=1>
<IMG SRC=image.ASP width=190 height=240>
</font>
</TD>
rs.movenext
endloop
image.asp does a response.binarywrite.. everything works ok as long as there is only one image. However if there are 6 images, the page displays 6 images but they are all the first image in line. In other words the img src does not refresh on each loop, it grabs the first image and holds that for each trip through the loop.
hope this makes sense, but I need to know if there is some way to "refresh" the image so the image actually changes on each loop.
do while loop
<TD BGcolor ="f7efde" align=center>
<font style ="arial narrow" size=1>
<IMG SRC=image.ASP width=190 height=240>
</font>
</TD>
rs.movenext
endloop
image.asp does a response.binarywrite.. everything works ok as long as there is only one image. However if there are 6 images, the page displays 6 images but they are all the first image in line. In other words the img src does not refresh on each loop, it grabs the first image and holds that for each trip through the loop.
hope this makes sense, but I need to know if there is some way to "refresh" the image so the image actually changes on each loop.