Pagination with next and previous links in ColdFusion
The following code gives pagination output with 'next' and 'previous' links. <cfparam name="FirstRow" default="1"> <cfparam name="DispRecords" default="5"> <cfquery name="GetParks" datasource="cfdocexamples" > SELECT PARKNAME, REGION, STATE FROM Parks </cfquery> <cfset EndRow=FirstRow + DispRecords> <cfif FirstRow + DispRecords GREATER THAN GetParks.RecordCount> <cfset EndRow=999> <cfelse> <cfset EndRow=DispRecords> </cfif> <table border="1"> <tr> <th>NO.</th> <th>PARKNAME</th> <th>REGION </th> <th>STATE</th> </tr> <cfoutput query="GetParks" startrow="#FirstRow#" maxrows="#EndRow#"> <tr> ...