Tema: Help
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 10/12/2002, 10:55
Gen
 
Fecha de Ingreso: noviembre-2002
Mensajes: 39
Antigüedad: 22 años, 5 meses
Puntos: 0
Help

hola tengo esto

<%
Set Conx = Server.CreateObject("ADODB.Connection")
Conx.Open("DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("db\db.mdb"))

Set RS = Conx.Execute("SELECT DISTINCTROW First(Ganador) AS Nombre, Count(Ganador) AS NumeroDeDuplicados FROM Puntajes GROUP BY Ganador HAVING (((Count(Ganador))>=1))")
Response.Write("Cargando...")
%>
<meta http-equiv="refresh" content="0.1;URL=posiciones.asp?
<%
While Not RS.Eof
Response.Write(""& RS("Nombre") &"="& RS("NumeroDeDuplicados") &"&")
RS.MoveNext
Wend
%>
">

y necesito poner lo del querystring en una tabla de posiciones por puntos