Is the code below called cfoutput-default2.cfm?

Ian

> -----Original Message-----
> From: Michael [mailto:[EMAIL PROTECTED]]
> Sent: 23 March 2001 17:43
> To: CF-Talk
> Subject: Why wont this advance to the next record
> 
> 
> Appreciate it someone could tell me why this wont advance to the next
> record,  keep getting 404 error object not found
> 
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
> 
> <cfparam name="firstrow" default="1">
> <CFIF IsDefined("URL.first")>
> <cfset firstrow = url.first>
> </CFIF>
> <Cfset startnextpage = Firstrow + 1>
> 
> <CFPARAM Name="ID" Default=1>
> <HTML>
> <HEAD>
> 
> 
> <cfquery name="selectcandidate" datasource="interview" dbtype="ODBC">
> SELECT      ID, EmpCandidate, SKillBackground, Status, 
> Recruiter, Profile
> FROM        interview
> WHERE ID=#ID#
> </cfquery>
> 
> <TITLE>Interview Candidates</TITLE>
> </HEAD>
> 
> <BODY bgcolor="6699ff">
> <!--- include toolbar.cfm--->
> <cfinclude template="Toolbar.cfm">
> 
> <cfoutput query="Selectcandidate" startrow="#firstrow#" maxrows="1">
> <table cellpadding="10">
> <tr>
>  <td>ID</td><br>
>  <td>#id#</td><br>
> </tr>
> <tr>
>  <td>Candidate Name</td><br>
>  <td>#EmpCandidate#</td><br>
> </tr>
> <tr>
>  <td>Skill Background</td>
>  <td>#SKillBackground#</td>
> </tr>
> <tr>
>  <td>Status</td>
>  <td>#Status#</td>
> </tr>
> <tr>
>  <td>Recruiter</td>
>  <td>#Recruiter#</td>
> </tr>
> </table>
> <BR><BR>
> <a href="cfoutput-default2.cfm?First=#StartNextPage#">Next Record</a>
> </cfoutput>
> </body>
> 
> Thank You
> 
> 
> 
> 
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to