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>");
}
%>