Please support our JSP advertiser: Lunarpages JSP Web Hosting
Views: 730 | Replies: 7
•
•
Join Date: Jul 2007
Posts: 10
Reputation:
Rep Power: 2
Solved Threads: 0
<%
int currentRow = 0;
here is my code contain in a jsp.
here records are displayed upto 200 only.
and one thing that more than 200 records are successfully added to the database
but Iam getting record display upto 200 only.
now can any one suggest that in a way
that i have to make my jsp to display
any number of records that I add. i.e dynamically.
int currentRow = 0;
int startingRow = ParamUtils.getIntParameter(request, "startingRow", 0);
int row_to_display = 200 ;
String errcode = null ;
try{
FPSProdMap[] oProdMap= dbFpsProdMap.getProdMap(sLang,1,200);
if (oProdMap != null) {
for (int i = 0; i < oProdMap.length; i++) {
currentRow++;
out.println("<TR><TD class='xRight' width='5%'>"+currentRow+"</TD>");
-------
}
}here is my code contain in a jsp.
here records are displayed upto 200 only.
and one thing that more than 200 records are successfully added to the database
but Iam getting record display upto 200 only.
now can any one suggest that in a way
that i have to make my jsp to display
any number of records that I add. i.e dynamically.
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)






Threaded Mode