This was exactly the answer. Thanks to all who answered.
Cutter
Nathan Dintenfass wrote:
I suspect your problem is the following construct:
<input ....value="<cfscript>formSize.getID();</cfscript>">
Since you return variables from the methods, you aren't going to get output inside the VALUE attribute of your INPUT tags. Instead, just do:
<input value="#formSize.methodName()#">
Or, even better:
<input value="#htmlEditFormat(formSize.methodName())#">
-----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Cutter (CF-Talk) Sent: Friday, June 11, 2004 5:51 AM To: [EMAIL PROTECTED] Subject: [CFCDev] CFC Issues
I think I'm on the right track, I just can't get anything to work...I'm not getting an error, but I'm not getting my data either. I am attempting to write an e-commerce package (back and front end). I've tried to take a very object oriented approach, and have followed the MVC site design example used at http://www.benorama.com. In the following .zip file (http://www.seacrets.com/files.zip) I've enclosed one of the CFC's (the first one I'm trying to get to work), and a page of snippet for how I am calling the .cfc for instantiation and usage. I know I'm probably missing something small and stupid, I just don't know what...
Any help would be greatly appreciated. Being a one man IT operation here (with OOD training, but limited experience), sometimes it just helps to have a fresh set of eyes...
Cutter
---------------------------------------------------------- You are subscribed to cfcdev. To unsubscribe, send an email to [EMAIL PROTECTED] with the words 'unsubscribe cfcdev' in the message of the email.
CFCDev is run by CFCZone (www.cfczone.org) and supported by Mindtool, Corporation (www.mindtool.com).
An archive of the CFCDev list is available at www.mail-archive.com/[EMAIL PROTECTED]
----------------------------------------------------------
You are subscribed to cfcdev. To unsubscribe, send an email
to [EMAIL PROTECTED] with the words 'unsubscribe cfcdev' in the message of the email.
CFCDev is run by CFCZone (www.cfczone.org) and supported by Mindtool, Corporation (www.mindtool.com).
An archive of the CFCDev list is available at www.mail-archive.com/[EMAIL PROTECTED]
----------------------------------------------------------
You are subscribed to cfcdev. To unsubscribe, send an email
to [EMAIL PROTECTED] with the words 'unsubscribe cfcdev' in the message of the email.
CFCDev is run by CFCZone (www.cfczone.org) and supported by Mindtool, Corporation (www.mindtool.com).
An archive of the CFCDev list is available at www.mail-archive.com/[EMAIL PROTECTED]
