Hi,
I am doing pagination with in webapplication(with
servlets and
jsp).I am using pager-taglib.jar and pager-taglib.tld.In jsp I am able to display all records.I am setting paging with 3 rows per page.But I have been getting problem with Query
String.
In Jsp page for paging there are available 1,2,3,4,5 (links) page numbers.When I click on one page number(eg: 2) the url will be come like "http://localhost:7001/WebPoolSriWeb/RequestDetails?empNo=7934&no_of_rows=AllRows?pager.offset=3"
In this url I ma getting two query strings(1. "empNo=7934&no_of_rows=AllRows"
2."?pager.offset=3").
Here offset is automatically generated from tag library.
But when I gave url manually like: "http://localhost:7001/WebPoolSriWeb/RequestDetails?empNo=7934&no_of_rows=AllRows?pager.offset=3" the records are displaying as per page(as my requirement).
In this concern I am not able to get URL when I click on page number link.
thanks in advance....