• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

urgent please

 
Ranch Hand
Posts: 56
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
reply
    Bookmark Topic Watch Topic
  • New Topic