Foros del Web » Programando para Internet » ASP Clásico »

Mostrar 2 items por fila

Estas en el tema de Mostrar 2 items por fila en el foro de ASP Clásico en Foros del Web. 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 ...
  #1 (permalink)  
Antiguo 12/05/2002, 14:29
 
Fecha de Ingreso: enero-2002
Mensajes: 73
Antigüedad: 23 años, 3 meses
Puntos: 0
Mostrar 2 items por fila

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>
  #2 (permalink)  
Antiguo 12/05/2002, 16:41
 
Fecha de Ingreso: diciembre-2001
Mensajes: 262
Antigüedad: 23 años, 3 meses
Puntos: 0
Re: Mostrar 2 items por fila

<table>
<%
columna=0
Do While not rs.Eof
columna=columna+1
%>
<TD> <%= rs("algo_"</td>
<% If columna=2 Then
columna=0
%>
</tr>
<tr>
<%
Else
Response.Write "</TD>"
End If
rs.MoveNext
Loop
%>
</table>

Algo asi utilizo yo ;)

Salu2
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 15:36.