Ver Mensaje Individual
  #5 (permalink)  
Antiguo 12/10/2005, 12:58
Saintel
 
Fecha de Ingreso: mayo-2004
Mensajes: 75
Antigüedad: 21 años
Puntos: 0
<table width="50%" border="0" align="center" cellpadding="4" cellspacing="2">
<tr>
<td width="101"><%=(producto.Fields.Item("codigo").Val ue)%></td>
<td width="118"><%=(producto.Fields.Item("producto").V alue)%></td>
<%
counter = 0
Do Until pconfiguracion.eof
%>
<td width="261"><div align="left"><strong><a href="detalle_pedido.asp?idpedido=<%=(pedido.Field s.Item("idpedido").Value)%>&idlinea=<%=(linea.Fiel ds.Item("idlinea").Value)%>&idproducto=<%=(product o.Fields.Item("idproducto").Value)%>&idproduct_con f=<%=(pconfiguracion.Fields.Item("idproduct_conf") .Value)%>"><%=(pconfiguracion.Fields.Item("present acion").Value)%></a></strong> </div></td>
<%
counter = counter + 1
If counter = 4 Then
Response.Write("</tr><tr>")
counter = 0
End If
pconfiguracion.MoveNext()
Loop
%>
</table>