<%
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.