Ver Mensaje Individual
  #8 (permalink)  
Antiguo 22/11/2005, 14:54
Avatar de Hereje
Hereje
 
Fecha de Ingreso: junio-2002
Ubicación: Córdoba, Argentina
Mensajes: 439
Antigüedad: 22 años, 9 meses
Puntos: 2
No, es más "facil" hacerlo desde ASP:
Código:
<%
dim datos
sql = "select id, nombre from gente"
set rs = con.execute(sql)
if not rs.eof then datos = rs.getrows
%>

<select name="gente">
<%
if isarray(datos) then
  for i = 0 to ubound(datos,2)
%>
  <option value="<%= datos(0,i) %>"><%= datos(1,i) %></option>
<%
  next
end if
%>
</select>
Espero te ayude, saludos!
__________________
Sergio