I have problem making the links work. I am trying to implement the CFPage_thru custom tag given in allaire site.<br>I am not able to quite figure out why the current page link is not working? When i click on 2 or 3 then it doesn't work.<br>Praveen<br>This is my code:<br><br><HTML><HEAD><br> <TITLE>PostNewHome - Entry Action</TITLE><br></HEAD><BODY bgcolor="ffffff"><br><br><FONT size="+1">PostNewHome</FONT> <BR><br><FONT size="+2"><B>Search was successfully Executed</B></FONT><br><br><!--- Initialize constants ---><br><CFSET MaxRows=10><br><br><CFPARAM Name="CurrentPage" Default="1"> <br><CFPARAM NAME="Start" DEFAULT="1"><br><cfparam name="PropertyCity" default=""><br><cfparam name="PropertyBedrooms" default="0"><br><cfparam name="PropertyBathrooms" default="0"><br><cfparam name="PropertyTypeCode" default=""><br><cfparam name="PropertyPrice" default="0"><br><br><br> <cfquery name="GetHouse" datasource="PostYourHome"><br> SELECT * from HomesOrLands<br> WHERE PropertyCity = '#PropertyCity#'<br> </cfquery><br> <br><!--- CF_PageThru will help us break up the product listing into pages.<br> The ADDEDPATH parameter is used to pass the search parameter CLASS<br> through the links of the generated page-through navigation.<br>---><br><CF_PAGETHRU TOTALRECORDS="#GetHouse.RecordCount#"<br> CURRENTPAGE="#CurrentPage#"<br> TEMPLATEURL="#SCRIPT_NAME#"<br> DISPLAYCOUNT="10"<br> PAGEGROUP="3"><br><br><CFOUTPUT><br><br><h3>House Listing</h3><br><br><!--- Output the page-through navigation here. The HTML for the navigation was<br> generated by CF_PageThru and returned in the PT_PageThru variable.<br>---><br><TABLE BORDER="1"><br><br><br><!--- Table headers ---><br><TR><br> <TH>Number</TH><br> <TH>City</TH><br> <TH>Property Type</TH><br> <TH>Price</TH><br> <TH>Bedrooms</TH><br> <TH>Bathrooms</TH><br><br></TR><br><br><p>#PT_PageThru#<br><p><br><table border><br></CFOUTPUT><br><br><br><br><!--- Show part of the product listing here. CF_PageThru calculated<br> PT_StartRow and PT_EndRow based on the current page of the<br> listing that is to be displayed (CurrentPage parameter of CF_PageThru).<br>---><br><br><CFLOOP Query="GetHouse" StartRow="#PT_StartRow#" EndRow="#PT_EndRow#"><br><CFOUTPUT><br><tr><br> <br> <TD>#GetHouse.CurrentRow#</TD><br> <TD>#PropertyCity#</TD><br> <TD>#PropertyTypeCode#</TD><br> <TD>#PropertyPrice#</TD><br> <TD>#PropertyBedrooms#</TD><br> <TD>#PropertyBathrooms#</TD><br><!--- <br> <td align="center" valign="middle"><br> <a href="detail.cfm?MFRModel=#MFR_Model#&CurrentPage=#CurrentPage#">Add</a><br> </td><br>---><br> </TR><br></CFOUTPUT><br></CFLOOP><br><br><CFOUTPUT><br></table><br><br><!--- Output the page-through navigation again here. ---><br><p>#PT_PageThru#<br><br><!--- Display what range in the product list is being displayed. ---><br><p>Displaying #PT_StartRow#-#PT_EndRow# of <Font color="red"><b>#GetHouse.RecordCount#</b></font> Houses.<br></CFOUTPUT><br>