Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/03/2007, 12:28
Avatar de AlZuwaga
AlZuwaga
Colaborador
 
Fecha de Ingreso: febrero-2001
Ubicación: 34.517 S, 58.500 O
Mensajes: 14.550
Antigüedad: 24 años, 4 meses
Puntos: 535
Re: Guardar datos editados en combo box

Se supone que tenés un recordset en donde guardaste las preferencias del usuario (es un ejemplo) previamente. Entonces, en ese registro, tenés almacenado también el "idclub"

Código:
<select name="club">
<%
idclub = preferencias("idclub")
while rec.EOF=false
%>
<option value="<%=rec.Fields(0).Value %>"<% if idclub = rec.Fields(0).Value then response.write " selected='selected'" %>><%=rec.Fields(1).Value%></option>
<%rec.MoveNext%>
<%wend%>
__________________
...___...