Ver Mensaje Individual
  #3 (permalink)  
Antiguo 08/07/2003, 08:48
Avatar de zink
zink
 
Fecha de Ingreso: mayo-2002
Ubicación: Aguascalientes
Mensajes: 125
Antigüedad: 23 años
Puntos: 0
Hola Mickel, esta es la funcion que utilizo para hacer el OnChange del combo.

<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function ValorCombo(form) {
var URL = document.forma.combo.options[document.forma.combo.selectedIndex].value;
window.location.href = URL;
}
// End -->
</SCRIPT>

y asi es como lleno el combo:
<%
Do while Not TBL.EOF
%>
<option value="......AQUI LE PASO LAS VARIBLES...."><%=TBL("nombre_tramite")%></option>
<%
TBL.MoveNExt
Loop
TBL.Close
%>

Espero me puedas ayudar.

Gracias