oilovlam,
Not knowing your full set-up I can't be sure, but this is most likely a
function of your database. Access treats true/false values differently than
most databases. It's OK for a teaching tool and desktop applications, but not
really intended for web applications.
Can you tell me what chapter in Jeffrey's book this comes from? I believe it
was updated in the latest version and I might be able to tell you how it was
handled. It could be that I changed the database so that it was no longer a
true/false field. Like I said, Access is not really up to serious web
application use.Others will differ with that, but I stand by it. I would
recommend using MySQL for the exercises instead. There are quick and easy MySQL
installers for (WAMP5 for Windows and MAMP for Mac) that will have you up and
running in no time.
Just a quick note to optimize your CF code a bit. You only need cfoutput if
you are outputting a variable. You can also combine your cfifs. See below.
<cfif rs_tourDetail.exerciseReqd>Yes<cfelseif NOT
rs_tourDetail.exerciseReqd>No</cfif>
Best of luck,
Bob
http://bobflynn.info/