Displaying search result across multiple pages

Hi,

After getting resultset say of over 1000 rows.I want to display the resultset over multiple pages just as search engines display results over multiple pages using buttons previous and next.

please suggest some sites containing the sample code in jsp.

Thanks in advance.

[320 byte] By [rinkub] at [2007-9-26 3:01:01]
# 1
Check this out http://jsptags.com/tags/navigation/pagerAlso, the Java Pet Sore application has another such JSP tag library. Look in the package com.sun.j2ee.blueprints.petstore.taglib.list
neville_sequeira at 2007-6-29 10:58:41 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

Hi All,

Has anyone tried to implement the jsptags in Servlets?

I am using Servlets and required a Search display like this. I have my results being retrieved from a class and I am trying to display these results in a table format.

i.e.

Customer c = new Customer();

c.retrieveCustomers();

then i iterate through the customers

while(c.next){

}

Sylviasue at 2007-6-29 10:58:41 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...