|
Sorry, I'm posting the code below. I tried to put an onclick and window resize javascript behavior as part of the link but it messed up the asp. I assume I'm inserting it in the wrong place or going about it the wrong way. The code looks like this
<%
While ((Repeat1__numRows <> 0) AND (NOT rs_horses.EOF))
%>
<a href="large_image.asp?productID=<%=(rs_horses.Fiel ds.Item("productID").Value)%>" target="_blank"><img src="<%=(rs_horses.Fields.Item("imageURL").Value)% >" width="150" height="150" border="0"> </a>
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
rs_horses.MoveNext()
Wend
%>
Where should the onclick go?
|