If anyone can help me how to show the List values in a drop-down box, that would be greate.
I have created a List in Action class and put it into request
ArrayList list = new ArrayList();
list.add("1");
list.add("2");
request.setAttribute("exsList", list);
And in JSP I have following:
<bean:define id="aList" name = "exsList" />
I just want to display these numbers in drop-down. What should I do next. Thank you
