Hi all,
I need to pass Arraylist from a
jsp to my Handler class via
Servlet . I can't use session since my handler class creates new session everytime . How could i achieve it ...
This requirement is for pagination.. I populate arrayList values in my Data class using a web service call. I return those list back to Jsp and display. But when if my list has more than 10 records it needs to be paginated. . Since i follow a specific mvc , i could not provide any pagination logic there . Is there any way to achieve this . ...