The effect I would like to achieve is that by clicking on a repeat region thumbnail image (first code block) the larger version of the same selected image is viewed concurrently in a different portion of the page(second code block)
Code:
<td ><%
While ((Repeat1__numRows <> 0) AND (NOT images.EOF))
%>
<a href="javascript:;" onmouseover="MM_swapImage('largeimage','','largeimage',1)" onmouseout="MM_swapImgRestore()"><img src="imagescript.asp?path=<%=(images.Fields.Item("url_img").Value)%>&Width=36" name="smallimage" border="0" id="smallimage" /></a>
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
images.MoveNext()
Wend
%></td>
Code:
<td ><img src="imagescript.asp?path=<%=(images.Fields.Item("url_img").Value)%>&Width=250" name="largeimage" id="largeimage" /> </td>