Ver Mensaje Individual
  #5 (permalink)  
Antiguo 07/07/2012, 15:46
Lain0x
 
Fecha de Ingreso: febrero-2008
Mensajes: 78
Antigüedad: 16 años, 11 meses
Puntos: 0
Respuesta: Combo box+jsp+servlet

Ya logré hacer que se vea el combo box con los datos que necesitaba.

Estoy intentando capturar la opción seleccionada e imprimirla en el mismo jsp. Pero me imprime el nombre de la variable y no su contenido. Osea: prod[i]

Este es mi código:

Código:
 <form name="form" action="Resultados2.jsp" method="post" >
<select name="sel">
<% 


    
     String prod[] = new String[6]; 
    
       prod =  (String[]) request.getSession().getAttribute("departamento");
    
          
     


           for(int i=0;i<6;i++){ 
               if(prod[i]!=null){
                %>
           
          <option value="<%="prod[i]" %>"><%=prod[i]%></option><% 
   }
                             }
       %>   
</select><tr>
<input type="submit" value="Entrar"/><br>

    </body>
    </form>
<%String option=request.getParameter("sel");
 if(option==null){
 }
 else{
 out.println("You have selected: <b>"+option+"</b>"+"<br>");
 }
 %>

Última edición por Lain0x; 07/07/2012 a las 16:17