Hi,
Is there a way for me to paginate HTML pages which were created on the fly? The HTML pages would be created by populating HTML variables by data sets coming from SQLite , which is done through a FOR-DO loop.
Scenario:
- Say I have 100 records of members in SQLite.
- Then whenever I click a View All button, only 20 members appear on the WebObject. This would be page one. So I have 4 pages more to view.
- The pagination is SET on several LABEL objects just outside the WebObject, at the bottom.
- Therefore the pagination would show something like this, if I'm on page 2, where [2] is NOT an ACTIVE LABEL:
<<PREVIOUS ... [1] [2] [3] [4] [5] ... NEXT>>
As a result, when I clicked on an ACTIVE LABEL, say [3], it will repopulate the WebObject with Record NUMBER 41 to 60. And LABEL [3] will then become INACTIVE. Or I can also click ACTIVE LABEL NEXT>> for the same RECORD series.
Any help, tip, formula or example would be greatly appreciated.

