i have a
jsp prg which is retiving data from database here this prg will fetch thousands of records and i dont want to display all at one go. so i have decided to display 10 files at a time.
during the corse of retival the files are fetched and the 10 files which are displayed are to be stored in the server.
now i have applied some logic and which is going to fetch 10 records at a time.
the out put will be like the one given bellow
The Total Number of Records for the Search are :1890
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Next
SNo -- Report Name -- Processed Date -- Report Type
1. ALED39 -- Dec 21,'00 -- maildelvery
2. PO -- Dec 22,'00 -- temp21
3. SUMINV -- Dec 28,'00 -- FeedBack
4. SUMINV -- Dec 12,'00 -- FeedBack
5. ALED41 -- Dec 10,'00 -- sapbmp
6. PO -- Dec 20,'00 -- temp21
7. ALED41 -- Dec 20,'00 -- sapbmp
8. SUMINV -- Dec 18,'00 -- FeedBack
9. COPY (57) OF 4$ -- Dec 19,'00 -- newlandtemp
10. PO -- Dec 24,'00 -- temp21
here when i click on any of these
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Next
the associated files are retived but the problem is when i clik on any of this the request has to be transmited to the same jsp and the whole process is repeted and this process takes a lot of time
now my question is how do i stop the second request (ie when i click on any of "1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Next ")
from going to the server for execution.
i hope the question is meaning full