Ver Mensaje Individual
  #13 (permalink)  
Antiguo 17/07/2002, 15:17
Avatar de bakanzipp
bakanzipp
 
Fecha de Ingreso: noviembre-2001
Ubicación: santiago de shilli
Mensajes: 2.554
Antigüedad: 23 años, 5 meses
Puntos: 0
Re: Generar Combo

cantanto victoria antes de tiempo :cantar:

reconfirmame que esto no funciona

Código:
  
<SELECT SIZE=1 NAME="Titular1">
<OPTION VALUE="0">[Seleccione]</OPTION>
<%if not(rs.eof) and not(rs.bof) then%>
<%while not rs.EOF%>
<OPTION VALUE="<%=rs.Fields("IdParticipante")%>"> 
<%=rs.Fields("Nombre")%></OPTION>
<%rs.MoveNext
loop %>
<%end if%>
</select>