Can someone help me in making a array session in JSP? I want to add an item to the array in some part and later on access the whole value of item in my controller. I know how to do it on singular variables but i want to do it in array. Hoping someone can help me. Thank you so much.
I want to do something like
<%
session.setAttribute( "theName[]", "sample name" );
%>
But I don't know how to do it.