I have an ArrayList which contains cutomer name details. In my JSP I am using session scope like below:
<c:set var="CustomerData"
value="${ItemDataResponse.dataItemsList[1]}" scope="session"/>
- How can I display all the customer names in a drop down menu in my JSP?
- How do I access an ArrayList in my JSP? (tags like JSTL, html I want to use to diplay the data)
Thanks for your help in advance.
Tune something like this: