No its name is default2.cfm,  it will show me the first record but after
that I get a 404 error.

"Ian Tait" <[EMAIL PROTECTED]> wrote in message
F7797736377BD311A0B0009027B0A9661FE9C1@THOUGHTBUBBLE01">news:F7797736377BD311A0B0009027B0A9661FE9C1@THOUGHTBUBBLE01...
> 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