probliem in pagiation 3 Answer(s) 3 years and 2 months ago
Posted in : JSP-Servlet
Hi the code provided for displaying editable datagrid in jsp works fine. but there is some pagination problem.when my sql data are more then 5 record, the link for 2 nd page doesn't work.
Regards Eswaramoorty
here is the provided code http://www.roseindia.net/answers/viewanswers/9032.html
View Answers
March 23, 2010 at 3:17 PM
u have to use the diplay tag s in jsp page for example:don;t use script code ,just u an provide property name.
int showRows=5; int totalRecords=5; int totalRows=nullIntconvert(request.getParameter("totalRows")); int totalPages=nullIntconvert(request.getParameter("totalPages")); int iPageNo=nullIntconvert(request.getParameter("iPageNo")); int cPageNo=nullIntconvert(request.getParameter("cPageNo"));
probliem in pagiation - JSP-Servlet probliem in pagiation Hi
the code provided for displaying editable datagrid in jsp works fine.
but there is some pagination problem.when my sql data are more then 5 record,
the link for 2 nd page doesn't work.
Regards