Hi.
i have page1.asp that has this code:
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.
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%>
thanks.