I have inserted several strings into my ArrayList. I want to plan an anchor for each string in the the Arraylist so that when I click on each string, it will send the string to other page by using session.setAttribute. However, my code only recognize the last string of the arrayList.
for(int i = 0; i < arrList.size(); i++) {
%>
<a href="somepage.jsp">arrList.get(i)</a>
<% } %>
So assume that my arrList contains some strings: toyota, honda, bmw ... If I click on toyota, it will display toyota on somepage.jsp.