Hi
My
servlet code
request.setAttribute("myVector",vSimpleVector); // I'm setting a vector object to the request object
rd = ctx.getRequestDispatcher("/sample.jsp"); // and dispatching it to a
jsp page...
in the jsp page I'm looping through the vector...
but I want to display some fixed records at a time..and when user clicks next I want to loop through the vector again...without actually calling the servlet again....... is there a way to get this working..........
Regards