1 | This example shows returning records 10-20 from the recordset created by the EmployeeList query: |
2 | |
3 | <CFOUTPUT QUERY="EmployeeList" STARTROW="10" MAXROWS="20"> |
4 | #FirstName# #LastName# #Phone# <BR> |
5 | </CFOUTPUT> |
6 | |
7 | 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 |