Hello, I am using the following code that allows for 6 out of 100 or some images to show on the page. All six images show on the same row. I want to divide the row and show only 3 images per row but keeping the six images per page can some one help me?
btw I am using the Recordset paging.
btw I am using the Recordset paging.
Code:
limit = 6
<tr>
<%
'Response.Write objRS.Fields("FILENAME").Value & "<br>" I can replace this with a table or whatever I need to loop through
' Display the records
For t = 1 To limit
%>
<td><a href="details.asp?cat=<%=catalog%>&pid=<%=objRS("productID")%>"><img src="catalog/<%=objRS("product_imagefolder")%>/thumb-<%=objRS("product_number")%>.jpg" alt="<%=objRS("product_number")%>" border="0"><br><div align="center"><%=objRS("product_name")%></div></a></td>
<%objRS.movenext%>
<%if objRS.EOF then exit for%>
<%
objRS.MoveNext
Next
%>
</tr>