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