En este tabla muestro una lista de productos que tengo en un base de datos, uno por cada fila de la tabla. Como lo puedo armar para que me muestre dos productos, por fila?
Gracias!!!!
<table width="94%" border="0" cellspacing="0" cellpadding="0"><tr><td>
<% if not rsRubro.EOF then
Dim strItem
if request("Id")<>"N/A" then
strItem = rsRubro("NombreRubro")
else strItem = "Todos"
end if %><table border="0" cellpadding="6" cellspacing="6" width="409">
<% If Session("Carrito") = "L" Then %>
<a href="CatalogoCarrito.asp"> <img src="VerCanasta.gif" border="0" WIDTH="66" HEIGHT="52"></a><% end if %>
<% Dim n
n=0
do while not rsRubro.EOF
if (n mod 1) = 0 then %><tr><%
end if %>
<td width="174"> <%
Dim img
img = rsRubro("Marca")+cstr(rsRubro("IdPr oducto"))%>
<div align="center"><a href="../Tools/images/Catalogo/<%=rsRubro("Imagen")%>" target="_blank">
<img src="../Tools/images/Catalogo/<%=rsRubro("Imagen")%>" border="0" alt="Ver Ampliada" width="160"></a></div></td>
<td valign="top" width="193">
<table width="97%" border="0" cellspacing="0" cellpadding="0">
<%If rsRubro("Descripcion") <> "" then%><tr>
<td class="clase2" valign="top" align="left"><b>Modelo:</b></td>
<td class="clase2"><%=rsRubro("De scripcion")%></td></tr><%End If
If rsRubro("Precio") > 0 then%>
<%End If
If rsRubro("Codigo") <> "" then%><tr>
<td class="clase1" valign="top" align="left"><b>Código:</b></td>
<td class="clase1"> <%=rsRubro("Codigo")%></td></tr><%End If%><tr><td height="11"></td>
<td align="right" height="11"><a href="CatalogoCarrito.asp?Id=<% =rsRubro("idproducto")%>">
<img src="../Tools/image/Carrito.gif" border="0" WIDTH="58" HEIGHT="39"></a></td>
</tr></table></td>
<% if (n mod 1) <> 0 then %></tr><%
end if
n=n+1 rsR rsRubro.MoveNext
loop if (n mod 1)<> 0 then %><td width="174"></td></tr><% end if %>
</table>