Resources - ASP Client Results Page
Here is the ASP you need to paste into the Results page that you specified in step two. You shouldn't need to change anything for it to work but feel free to change any of the formatting if you wish.
 
The results will look like this on your site:

Found 142 sites for 'bears' , Displaying results 1 to 30.

1. All you can bear (100%)
Friendly site selling collectors bears. Steiff, Deans, vintage, Merrythought and Artist bears. Free U.K. shipping.

2. Debi's Bear Paws (100%)
Specializing in Boyds Bears, Boyds Dolls and Cottage Collectibles for about 30% less than retail. Free Shipping in the continental united states for orders greater than $100.

3. Hummelbären (100%)
Lovable mohair Teddy Bears, each one of a kind, designed and hand made by artist Rosi Ploen (Germany)


Copy and paste the following ASP into the <BODY> your page:
<%
' Constant variables that are used later in the code
const remoteSearchPage="http://www.collectiblestop25.com/cgi-bin/ranker/publicsearch.cgi"

' Find out how many sites were returned, how many sites to display per page and where the display should start
' These posted values need to be converted to integer types because posted data is always a string
dim resultsReturned,startDisplay,endDisplay,resultsPerPage
resultsReturned=int(request("numberOfSites"))
pageStart=int(request("pageStart"))
resultsPerPage=int(request("resultsPerPage"))

' Calculate the last site to display on this page
if pageStart+(resultsPerPage-1) < resultsReturned then
pageFinish=pageStart+(resultsPerPage-1)
else
pageFinish=resultsReturned
end if

' Display how many sites were found using which text and the results which are being displayed
%>
Found <%=resultsReturned%> sites for '<%=request("searchText")%>'
<%

' If there were sites found show which sites are being displayed
if resultsReturned>0 then
%>
, Displaying results <%=pageStart%> to <%=pageFinish%>.<br><br>
<%
end if

' Display the sites which were found
for searchResult=pageStart to pageFinish
%>
<b><%=searchResult%>.</b>&nbsp;<a href="<%=request("linkTarget" & searchResult)%>"><%=request("siteName" & searchResult)%></a>&nbsp;<font size=1>(<%=request("matchPercent" & searchResult)%>%)</font><br>
<font size=2><%=request("siteDescription" & searchResult)%></font><br><br>
<%
next

' Create the form to be used to fetch the previous results if we are not at the start
if pageStart>1 then
%>
<form name="showPrevious" method="post" action="<%=remoteSearchPage%>">
<input type="hidden" name="clientResultsPage" value="<%=request("clientResultsPage")%>"/>
<input type="hidden" name="searchtext" value="<%=request("searchText")%>"/>
<input type="hidden" name="resultsPerPage" value="<%=request("resultsPerPage")%>"/>
<input type="hidden" name="pageStart" value="<%=(pageStart)-resultsPerPage%>"/>
</form>
<%
end if

' Create the form to be used to fetch the next results if we are not at the end
if pageFinish<resultsReturned then
%>
<form name="showNext" method="post" action="<%=remoteSearchPage%>">
<input type="hidden" name="clientResultsPage" value="<%=request("clientResultsPage")%>"/>
<input type="hidden" name="searchtext" value="<%=request("searchText")%>"/>
<input type="hidden" name="resultsPerPage" value="<%=request("resultsPerPage")%>"/>
<input type="hidden" name="pageStart" value="<%=(pageStart)+resultsPerPage%>"/>
</form>
<%
end if

' Display the appropriate previous and next buttons
if pageStart>1 then response.write("<a href='javascript:document.showPrevious.submit();'><< previous</a> ")
if pageFinish<resultsReturned then response.write("<a href='javascript:document.showNext.submit();'>next >></a>")
%>