Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to show multiple images side by side using binarywrite? 1

Status
Not open for further replies.

wvdba

IS-IT--Management
Jun 3, 2008
465
0
0
US
Hi.
i have page1.asp that has this code:
Code:
  <%session("img") = "7.jpg"%> 
        <td><img src="img.asp"></img></td> 
<%response.buffer%>  
  <%session("img") = "9.jpg" %>
        <td><img src="img.asp"></img></td> 
<%response.buffer%>
  <%session("img") = "8.jpg" %>
        <td><img src="img.asp"></img></td>  
<%response.buffer%>
img.asp is just a binary write and gets session("img") as the fine name and works with a single image. but, when i do 3 images, the last images shows up 3 times. is there a way to get around this?
thanks.
 
ok.
my bad.
i'll start the old one.
 
actually what i really need to do is very simple:
display 3 different files side by side using binarywrite as i described. but, it shows the same image (the 3rd one) 3 times and it seems that nobody has a solution for it.
thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top