Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/09/2004, 14:45
vito_gris
 
Fecha de Ingreso: agosto-2002
Mensajes: 301
Antigüedad: 22 años, 9 meses
Puntos: 2
a ver si te sirve esto

<select name="empresa">
<option><--Seleccione--></option>
<%R_bu.movefirst
do while not R_bu.eof
If cstr(R_bu(1))=cstr(empresa) then seleccionado=" selected " else seleccionado=" "
%>
<option value="<%=R_bu(1)%>" <%=seleccionado%>><%=R_bu(3)%></option>
<%R_bu.movenext
loop
%>
</select>