Cita:
Iniciado por Lebennin No hace falta que indiques de donde tiene que coger la variable. Pon el codigo de las dos páginas y miramos a ver que pasa.
Tengo esto al principio de la pagina:
Dim id
id = Recordset1.Request.Querystring("IdFamilia")
Aqui esta Productos.asp:
-----------------------------------------------------------------------------
<body>
<%While NOT Recordset2.EOF%>
<%If id = Recordset2.Fields.Item("IdFamilia").Value then%>
<table width="219" border="1">
<tr>
<td width="19"><a href="file:///C|/Documents and Settings/Iñigo/Mis documentos/inaug.asp"><img src="file:///C|/Iñigo/Webs/INAUG/editar/images/next.gif" width="16" height="16" border="0" /></a></td>
<td width="365"><%=(Recordset2.Fields.Item("Nombre").V alue)%></td>
</tr>
</table>
<table width="400" border="0">
<tr>
<td><span class="Estilo2">Descripción:</span></td>
</tr>
<tr>
<td><%=(Recordset2.Fields.Item("Descripcion").Valu e)%></td>
</tr>
</table>
<table width="400" border="0">
<tr>
<td><span class="Estilo2">Recubrimientos disponibles:</span></td>
</tr>
<tr>
<td><%=(Recordset2.Fields.Item("Recubrimiento").Va lue)%>
<table width="400" border="0">
<tr>
<td><span class="Estilo2">Presentación:</span></td>
</tr>
<tr>
<td><%=(Recordset2.Fields.Item("Presentacion").Val ue)%></td>
</tr>
</table></td>
</tr>
</table>
<%End If%>
<%Recordset2.MoveNext%>
<%WEnd%>
<p> </p>
</body>
-------------------------------------------------------------------------------------------
Aqui tienes familias.asp:
--------------------------------------------------------------------------------------------
<body>
<table width="400" border="1" align="center">
<%While NOT Recordset1.EOF%>
<tr>
<td><a href="Productos.asp"><img src="<%=(Recordset1.Fields.Item("Imagen").Value)%> " border="0" /></a></td>
<td><%=(Recordset1.Fields.Item("Nombre").Value)% ></td>
<%Recordset1.MoveNext%>
<td><a href="Productos.asp"><img src="<%=(Recordset1.Fields.Item("Imagen").Value)%> " border="0" /></a></td>
<td><%=(Recordset1.Fields.Item("Nombre").Value)% ></td>
</tr>
<%Recordset1.MoveNext%>
<%WEnd%>
</table>
</body>
--------------------------------------------------------------------------------------------
Un saludo!
Gracias.