Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/09/2005, 06:25
Avatar de PMP
PMP
 
Fecha de Ingreso: febrero-2003
Ubicación: Chacabuco - Buenos Aires
Mensajes: 214
Antigüedad: 22 años, 2 meses
Puntos: 1
Se me ocurre que hagas un SELECT TOP 11 y que solo imprimas 10 registros, si hay un registro mas imprimes el link.

Código:
'............
Dim I
I = 0
While NOT oRs.EOF AND I < 10
    I = I + 1
    'Imprimes el registro
    oRs.MoveNext
Wend

If NOT oRs.EOF then
   Response.Write("link")
end if

'.........
Saludos