I have a dropdown box and the user can select as many as he wants. I have another dropdown that stores the user selections. I want to display the user selections in the confirmation page.
form-property name="chosenstates" type="java.lang.String[]"
Action class
String [] states= (String [])stateForm.get("chosenstates");
myStateFormbean.setStates(states);
JSP myForm.getStates()(loop thru array is not working)
The above code is not working..How do I do this?