Hi,
It is possible. However, when your
jsp page loads, it does not have that List set. You have to set that list before your jsp loads. there are two ways:
In jsp page, at the top you can write following code or you can call other action to load List so this jsp page can use list of the form...
<%
if(request.getParameter() == null) {
ActionForm form = new ActionForm();
form.setList();
}
%>
Hope, you have got idea, if you have still query fill free to ask.
"Either do it with 100% commitment or do not do it, because almost is not enough"