This example shows returning records 10-20 from the recordset created by the EmployeeList query: |
<CFOUTPUT QUERY="EmployeeList" STARTROW="10" MAXROWS="20"> |
#FirstName# #LastName# #Phone# <BR> |
</CFOUTPUT> |
The STARTROW and MAXROWS attributes can be used to create an application that displays records in limited sets and then prompts the user to display the next group of records |