Ver Mensaje Individual
  #3 (permalink)  
Antiguo 17/04/2005, 17:59
mariano_donati
 
Fecha de Ingreso: marzo-2005
Mensajes: 1.418
Antigüedad: 19 años
Puntos: 9
Caricatos aca te dejo el codigo, fijate que el contador que yo mencionaba es la variable posDiv, que guarda primero la posicion inicial TOP que tendra la primer capa y luego por cada registro que se muestra del objeto REcordSet de ASP le suma 132.
Yo seguiré intentando solucionar este tema por que cada vez más son los usuarios que utilizan FireWorks y realmente me tiene preocupado. Muchas gracias por responderme. Saludos Caricatos.

posDiv = 103
do while not registros.EOF
posDiv = posDiv + 132
%>
<DIV Id="middle" style="position:absolute;left:158;top:<%=posDiv%>; width:675px; height:1px; background-image:url(Imágenes/fondoDivMiddle.gif);z-index:-2;">
<table width="614" height="134" align="center">
<!-- se muestra el catalogo de productos del e-shop -->
<form method="post" action="e_shops.asp?ac=meter&prod=<%=registros("Id ")%>">
<tr>
<td width="121" rowspan="3" align="center" valign="top"><a href="e_shops.asp?id=1" class="foto" onclick="ampliar_foto('Img<%=registros("Id")%>','< %=registros("Imagen")%>')"><img src="<%=registros("Imagen")%>" width="78" height="86" border="0"></a></td>
<td width="310" height="24" valign="bottom" style="color:#006699;font-family:formata;font-weight:light;font-size:12px"><%=registros("MarcaProd")%></td>
<td width="167" height="54" rowspan="2" align="center" valign="middle" style="color:#006699;font-weight:light;font-family:Times;font-size:12px;color:darkred">
AR$ <%=registros("Precio")%>,00</td>
</tr>
<tr>
<td height="31" style="color:#006699;font-family:formata;font-weight:bold;font-size:13px"><%=registros("Nombre")%></td>
</tr>
<tr>
<td width="310" height="69" valign="top" style="font-family:Times New Roman, Times, Serif;font-size:13px"><%=registros("Descripcion")%><a href="ver_mas.asp?id_prod=<%=registros("Id")%>">Ve r M&aacute;s</a>&nbsp;
<a href="comments.asp?prod=<%=registros("Id")%>">Ver comentarios</a></td>
<td height="69" colspan="2" align="center" valign="top">
<input name="submit" type="submit" value="Comprar"></td>
<input type="hidden" name="cant_prod" value="1">
</tr>
</form>
</table>
</DIV>
<%
registros.MoveNext
loop