Code review, PLEASE

2001-03-19 Thread Mike
I have to be missing something: and I cant put my mouse on it !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" !--- include toolbar.cfm--- cfinclude template="Toolbar.cfm" html head CFPARAM Name="ID" Default=1 titleInterview 2/title /head CFQUERY NAME="selectcandidate"

RE: Code review, PLEASE

2001-03-19 Thread Paul Ihrig
essage- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 2:27 PM To: CF-Talk Subject: Code review, PLEASE I have to be missing something: and I cant put my mouse on it !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" !--- include toolbar.cfm--- cf

RE: Code review, PLEASE

2001-03-19 Thread Phoeun Pha
It would be best if u can tell us what the problem is and what ua re tyring to get the page to do. then i can understand the code better -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 1:27 PM To: CF-Talk Subject: Code review, PLEASE I have

Re: Code review, PLEASE

2001-03-19 Thread Mike
ing that you think should so we don't have to guess. :) -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 11:27 AM To: CF-Talk Subject: Code review, PLEASE I have to be missing something: and I cant put my mouse on it !DOCTYPE HTML PUBLIC &qu

RE: Code review, PLEASE

2001-03-19 Thread Savan Thongvanh
glad you said that, i was feeling kind of dense "Dylan Bromby" [EMAIL PROTECTED] on 03/19/2001 01:39:53 PM Please respond to [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] cc:(bcc: Savan Thongvanh/DSM/Seabury) Subject: RE: Code review, PLEASE why don't you p

Re: Code review, PLEASE

2001-03-19 Thread Mike
Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 2:27 PM To: CF-Talk Subject: Code review, PLEASE I have to be missing something: and I cant put my mouse on it !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" !--- include to

Re: Code review, PLEASE

2001-03-19 Thread Greg Wolfinger
whats the error that you are getting with this code? - Original Message - From: "Mike" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, March 19, 2001 2:26 PM Subject: Code review, PLEASE I have to be missing something: and I cant put my mouse on

RE: Code review, PLEASE

2001-03-19 Thread Hayes, David
selectCandidate is your query name; a query can't be converted to a string. You may want one of your query column names instead. -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 2:01 PM To: CF-Talk Subject: Re: Code review, PLEASE This is what I

RE: Code review, PLEASE

2001-03-19 Thread Robert Long
I don't see any query that is updating anything in the code you sent. -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 1:51 PM To: CF-Talk Subject: Re: Code review, PLEASE Sorry bout that: This is the error Error Occurred While Processing Request

RE: Code review, PLEASE

2001-03-19 Thread Howarth, Craig (IBK-NY)
iginal Message- From: Mike [SMTP:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 3:01 PM To: CF-Talk Subject: Re: Code review, PLEASE This is what I get now with the ## Error Occurred While Processing Request Error Diagnostic Information Expression result cannot

RE: Code review, PLEASE

2001-03-19 Thread Robert Long
ue="#id" ... rest of code... /cfoutput -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 2:01 PM To: CF-Talk Subject: Re: Code review, PLEASE This is what I get now with the ## Error Occurred While Processing Request Error Diagnostic In

Code review PLEASE

2001-03-15 Thread Mike
This is really making me go bald, I have a page that has next and previous, and when viewed locally I can see everything, when I ftp to my host (and yes the odbc is working and correct) I can only see the first record, and nothing after that. I have tried putting the database(access) in the

RE: Code review PLEASE

2001-03-15 Thread Sicular, Alexander
, March 15, 2001 2:00 PM To: CF-Talk Subject: Code review PLEASE This is really making me go bald, I have a page that has next and previous, and when viewed locally I can see everything, when I ftp to my host (and yes the odbc is working and correct) I can only see the first record

Re: Code review PLEASE

2001-03-15 Thread Mike
;news:010001c0ad87$6836dcb0$[EMAIL PROTECTED]... You have a maxrows = 1 on the query. $.02 - Original Message - From: "Mike" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, March 15, 2001 12:59 PM Subject: Code review PLEASE This is really making me

Re: Code review PLEASE

2001-03-15 Thread Deanna L. Schneider
Are you trying to have the user page through one record at a time? Cause that's what you're going to get with this. You'll only ever get one user whose id equals the passed id ---snip--- WHERE ID=#ID# What I think you want is something like the following (quickly cut from existing code, so

RE: Code review PLEASE

2001-03-15 Thread Stephenie Hamilton
, March 15, 2001 2:47 PM To: CF-Talk Subject: Re: Code review PLEASE Your the second one to say that, but locally everything works fine, if I turn the max rows off then I will see all the records and I only want to see one record at time Michael "Cami Lawson" [EMAIL PROTEC

Re: Code review PLEASE

2001-03-15 Thread David E. Crawford
From: "Mike" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, March 15, 2001 14:46 Subject: Re: Code review PLEASE Your the second one to say that, but locally everything works fine, if I turn the max rows off then I will see all the records and I only want to see

Re: Code review PLEASE

2001-03-15 Thread Mike
ent: Thursday, March 15, 2001 12:59 PM Subject: Code review PLEASE This is really making me go bald, I have a page that has next and previous, and when viewed locally I can see everything, when I ftp to my host (and yes the odbc is working and correct) I can only see the first record, and

RE: Code review PLEASE

2001-03-15 Thread Douglas Malcolm
t a string, and is in fact a number after you increment it. Douglas Malcolm -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 15, 2001 11:47 AM To: CF-Talk Subject: Re: Code review PLEASE Your the second one to say that, but locally everything works fine,

Re: Code review PLEASE

2001-03-15 Thread Judith Campbell
At 02:46 PM 3/15/01 -0500, you wrote: Your the second one to say that, but locally everything works fine, if I turn the max rows off then I will see all the records and I only want to see one record at time Michael The problem isn't with maxrows, it's with ID. the cfparam statement isn't

RE: Code review PLEASE

2001-03-15 Thread Adkins, Randy
Put CFOUTPTUT around the CFSET for your NEXT/PREV variables Your MAXROWS=1 is fine -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 15, 2001 2:47 PM To: CF-Talk Subject: Re: Code review PLEASE Your the second one to say that, but locally everything works

Re: Code review PLEASE

2001-03-15 Thread Jason Lotz
Take maxrows out of the cfquery and add it to the cfoutput along with a startrow attribute. Jason - Original Message - From: "Mike" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, March 15, 2001 12:46 PM Subject: Re: Code review PLEASE Your t

Re: Code review PLEASE

2001-03-15 Thread Mike
logies, Inc. want CF_Freedom? try CFXHosting.com -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 15, 2001 2:47 PM To: CF-Talk Subject: Re: Code review PLEASE Your the second one to say that, but locally everything works fine, if I turn the m

Re: Code review PLEASE

2001-03-15 Thread Jon Hall
ata here td align="left"a href="default2.cfm?ID=#PrevID#"Previous/a/td td align="right"a href="default2.cfm?ID=#NextID#"Next/a/td /cfoutput This will work even without caching, but might as well make it quicker. jon - Original Message - From: "Mik

Re: Code review PLEASE

2001-03-15 Thread Mike
, March 15, 2001 2:47 PM To: CF-Talk Subject: Re: Code review PLEASE Your the second one to say that, but locally everything works fine, if I turn the max rows off then I will see all the records and I only want to see one record at time Michael "Cami Lawson" [EMAIL

Re: Code review PLEASE

2001-03-15 Thread Mike
="default2.cfm?ID=#PrevID#"Previous/a/td td align="right"a href="default2.cfm?ID=#NextID#"Next/a/td /cfoutput This will work even without caching, but might as well make it quicker. jon - Original Message - From: "Mike" [EMAIL PROTECTED] To: &q