How to show 10 records per page?
I have followed MVC framework in my application.Iam using JSTL in jsp pages for the presentation.I want to know is there any particular way to display a certain no. of records per page?
I have followed MVC framework in my application.Iam using JSTL in jsp pages for the presentation.I want to know is there any particular way to display a certain no. of records per page?
the simple answer is: write the logic to do so. An ORM package like Hibernate has built in support for it and there are other APIs out there that can help you. Look for "jsp pagination" using google. An example I found was:
http://www.javaworld.com/javaworld/jw-07-2004/jw-0726-pagination.html
but there are other APIs.