Hi, I want to sort my search results from a access database in 10 at a page and showed in page 1,2,3.....last. Now Im just using next and previous to goto frm one page to another.
<cfif pageno GT 1>
<td><a href="searchResult1.cfm?page=#pageno-1#" class="style3">< Previous </a></td>
</cfif>
<cfif counter LE #rec_count#>
<td align="right"><a href="searchResult1.cfm?page=#pageno+1#" class="style3">Next > </a></td>
</cfif>
Any suggestions??