Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/01/2006, 10:31
tammander
 
Fecha de Ingreso: enero-2006
Ubicación: Torroles (Costa der Só)
Mensajes: 1.017
Antigüedad: 18 años, 4 meses
Puntos: 7
O usas el href.location

Código:
<a href="Edicion.asp?valor=editar&id=<%= objRS("id")%>"
o el evento de clickear

Código:
onclick="window.open(this.href, "miVentana", 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1,screen.width,screen.height'); return false;"
Obviamente el navegador lee antes el href y te lo abre en la misma ventana. Prueba esto:

Código:
<tr bgcolor=#CCCC99 bordercolor=#A4A47A>
  <td  height="25" width="21"><font face="Verdana" size="1">
  <a href="javascript:void();" onclick="window.open('Edicion.asp?valor=editar&id=<%= objRS("id")%>', 'miVentana', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1,screen.width,screen.height'); return false;" class="linkcell" style="text-decoration: none">
  <%= objRS("id")%></a>&nbsp;</font></td>
</tr>

Un saludo