Help....Help....Help I'm the newone in JSP
I have some questions:
1. The problem is, how can I define how much results of sql(mySQL) query will be show on html page (something like we see on many search engines like Google or Altavista etc.), in the bottom of page: Result Page: 1 2 3 4 5 Next (1,2,3,4,5 are links to the other pages which satisfy sql query shown above).
I have some suggestion to do this, but I don't really understand this:
(A) Limit how many times you call resultSet.next(). Save the ResultSet in the session object.
(B) Look up all the data from the database, store it in a DBResults object, but only print 10 results at a time. Store the DBResults object in the session object.
Thanx.....missa

