thru
java server pages(
JSP), its huge database ,may be 500000 or more record, i want to display records. in the first page it has first 10 records, next page has next 10 records and so on.. page: 1 2 3 4 5 6 7 8 9 10 (page no) when i select 1, it will show 1st page of first 10 records,if i select 2 it will show 2nd page of records starts from 11 to records 20 ... and so on.....
my back end is: MSSQL 7.0
Note : Data base is growing 1000 record every day so not possible to used any of collection or vector class..
is there any method which directly retrive data from and trough jsp page i can divide that in to 10 record per page
Deepak