RE: Hidden Fields Problem

2000-08-22 Thread Top-Link Tech (John Ceci)

Paul,

If memory serves me...URL is a reserved variable name...

HTH,
John

-Original Message-
From: paul smith [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 22, 2000 12:36 PM
To: [EMAIL PROTECTED]
Subject: Hidden Fields Problem


I'm passing the following hidden fields (only,
there no other fields)

CFOUTPUT
*INPUT TYPE="hidden"  NAME="GrandTotal"  VALUE="#GrandTotal#" 
*INPUT TYPE="hidden"  NAME="daybreakCD"  VALUE="#Form.daybreakCD#" 
INPUT TYPE="hidden" NAME="daybreakTAPE" VALUE="#Form.daybreakTAPE#"
*INPUT TYPE="hidden"  NAME="livingCD"  VALUE="#Form.livingCD#" 
*INPUT TYPE="hidden" NAME="livingTAPE" VALUE="#Form.livingTAPE#"
INPUT TYPE="hidden" NAME="luxuryCD" VALUE="#Form.luxuryCD#"
INPUT TYPE="hidden" NAME="luxuryTAPE" VALUE="#Form.luxuryTAPE#"
*INPUT TYPE="hidden" NAME="oceanCD" VALUE="#Form.oceanCD#"
INPUT TYPE="hidden" NAME="oceanTAPE" VALUE="#Form.oceanTAPE#"
*INPUT TYPE="hidden" NAME="mistletoeCD" VALUE="#Form.mistletoeCD#"
*INPUT TYPE="hidden" NAME="mistletoeTAPE" VALUE="#Form.mistletoeTAPE#"
INPUT TYPE="hidden" NAME="lullabyCD" VALUE="#Form.lullabyCD#"
*INPUT TYPE="hidden" NAME="lullabyTAPE" VALUE="#Form.lullabyTAPE#"
*INPUT TYPE="hidden" NAME="billing_street" VALUE="#Form.billing_street#"
*INPUT TYPE="hidden" NAME="cust_name" VALUE="#Form.cust_name#
INPUT TYPE="hidden" NAME="billing_city" VALUE="#Form.billing_city#"
*INPUT TYPE="hidden" NAME="billing_state" VALUE="#Form.billing_state#"
INPUT TYPE="hidden" NAME="billing_zip_code"
VALUE="#Form.billing_zip_code#"
*INPUT TYPE="hidden" NAME="billing_country" VALUE="#Form.billing_country#"
*INPUT TYPE="hidden" NAME="shipping_street" VALUE="#Form.shipping_street#"
*INPUT TYPE="hidden" NAME="shipping_city" VALUE="#Form.shipping_city#"
*INPUT TYPE="hidden" NAME="shipping_state" VALUE="#Form.shipping_state#"
*INPUT TYPE="hidden" NAME="shipping_zip_code"
VALUE="#Form.shipping_zip_code#"
INPUT TYPE="hidden" NAME="shipping_country"
VALUE="#Form.shipping_country#"
*INPUT TYPE="hidden" NAME="phone" VALUE="#Form.phone#"
*INPUT TYPE="hidden" NAME="fax" VALUE="#Form.fax#"
*INPUT TYPE="hidden" NAME="email" VALUE="#Form.email#"
INPUT TYPE="hidden" NAME="url" VALUE="#Form.url#"
*INPUT TYPE="hidden" NAME="card_type" VALUE=#Form.card_type#"
*INPUT TYPE="hidden" NAME="card_number" VALUE="#Form.card_number#"
*INPUT TYPE="hidden" NAME="expiration_date" VALUE="#Form.expiration_date#"
/CFOUTPUT

No matter the name I use for the field (so it's not a reserved name problem)
the action template errors on: "The specified field cannot be found".

In the above list, the action template cannot find FORM.BILLING_CITY.  This
is the 16th field in the list.  No matter what the name of the 16th field
is, the error is thrown that THAT field cannot be found.

The fields marked with a * above ARE passed.

The 15th field is passed, BUT like so:

CUST_NAME=paul smithgt;INPUT type=LUXURYTAPE=0 B LUXURYCD = 0 ets!!
where the "paul smith" is correct...

HELP!  I'm losing my mind

best,  paul


PS A this was to be a simple mod of a simple shopping cart done by
another. 6 hours later and counting... ;-)


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Hidden Fields Problem

2000-08-22 Thread Deanna L. Schneider

It's something on your actual form page that's throwing an error, so your're
getting error message content in your next "form field." Try checking for cf
syntax errors in the neighborhood of the 15th and 16th form fields.

-Deanna




Deanna Schneider
Interactive Media Developer
UWEX Cooperative Extension Electronic Publishing Group
103 Extension Bldg
432 N. Lake Street
Madison, WI 53706
(608) 265-7923



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Hidden Fields Problem

2000-08-22 Thread Clint Tillerson

Here's the problem:

missing quotation mark at the end of "#Form.cust_name#


*INPUT TYPE="hidden" NAME="cust_name" 
VALUE="#Form.cust_name# 
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Hidden Fields Problem

2000-08-22 Thread Stuart Duncan

Paul,

On the Form.cust_name you just forgot a " at the end of the value.

INPUT TYPE="hidden" NAME="cust_name" VALUE="#Form.cust_name#
Should be
INPUT TYPE="hidden" NAME="cust_name" VALUE="#Form.cust_name#"

That's all there is to it.   It just didn't know where one input started 
and the other one ended :)

Stuart Duncan
MaracasMedia Inc.




At 10:36 AM 8/22/00 -0700, you wrote:
I'm passing the following hidden fields (only,
there no other fields)

CFOUTPUT
*INPUT TYPE="hidden"  NAME="GrandTotal"  VALUE="#GrandTotal#" 
*INPUT TYPE="hidden"  NAME="daybreakCD"  VALUE="#Form.daybreakCD#" 
INPUT TYPE="hidden" NAME="daybreakTAPE" VALUE="#Form.daybreakTAPE#"
*INPUT TYPE="hidden"  NAME="livingCD"  VALUE="#Form.livingCD#" 
*INPUT TYPE="hidden" NAME="livingTAPE" VALUE="#Form.livingTAPE#"
INPUT TYPE="hidden" NAME="luxuryCD" VALUE="#Form.luxuryCD#"
INPUT TYPE="hidden" NAME="luxuryTAPE" VALUE="#Form.luxuryTAPE#"
*INPUT TYPE="hidden" NAME="oceanCD" VALUE="#Form.oceanCD#"
INPUT TYPE="hidden" NAME="oceanTAPE" VALUE="#Form.oceanTAPE#"
*INPUT TYPE="hidden" NAME="mistletoeCD" VALUE="#Form.mistletoeCD#"
*INPUT TYPE="hidden" NAME="mistletoeTAPE" VALUE="#Form.mistletoeTAPE#"
INPUT TYPE="hidden" NAME="lullabyCD" VALUE="#Form.lullabyCD#"
*INPUT TYPE="hidden" NAME="lullabyTAPE" VALUE="#Form.lullabyTAPE#"
*INPUT TYPE="hidden" NAME="billing_street" VALUE="#Form.billing_street#"
*INPUT TYPE="hidden" NAME="cust_name" VALUE="#Form.cust_name#
INPUT TYPE="hidden" NAME="billing_city" VALUE="#Form.billing_city#"
*INPUT TYPE="hidden" NAME="billing_state" VALUE="#Form.billing_state#"
INPUT TYPE="hidden" NAME="billing_zip_code" VALUE="#Form.billing_zip_code#"
*INPUT TYPE="hidden" NAME="billing_country" VALUE="#Form.billing_country#"
*INPUT TYPE="hidden" NAME="shipping_street" VALUE="#Form.shipping_street#"
*INPUT TYPE="hidden" NAME="shipping_city" VALUE="#Form.shipping_city#"
*INPUT TYPE="hidden" NAME="shipping_state" VALUE="#Form.shipping_state#"
*INPUT TYPE="hidden" NAME="shipping_zip_code"
VALUE="#Form.shipping_zip_code#"
INPUT TYPE="hidden" NAME="shipping_country" VALUE="#Form.shipping_country#"
*INPUT TYPE="hidden" NAME="phone" VALUE="#Form.phone#"
*INPUT TYPE="hidden" NAME="fax" VALUE="#Form.fax#"
*INPUT TYPE="hidden" NAME="email" VALUE="#Form.email#"
INPUT TYPE="hidden" NAME="url" VALUE="#Form.url#"
*INPUT TYPE="hidden" NAME="card_type" VALUE=#Form.card_type#"
*INPUT TYPE="hidden" NAME="card_number" VALUE="#Form.card_number#"
*INPUT TYPE="hidden" NAME="expiration_date" VALUE="#Form.expiration_date#"
/CFOUTPUT

No matter the name I use for the field (so it's not a reserved name problem)
the action template errors on: "The specified field cannot be found".

In the above list, the action template cannot find FORM.BILLING_CITY.  This
is the 16th field in the list.  No matter what the name of the 16th field
is, the error is thrown that THAT field cannot be found.

The fields marked with a * above ARE passed.

The 15th field is passed, BUT like so:

CUST_NAME=paul smithgt;INPUT type=LUXURYTAPE=0 B LUXURYCD = 0 ets!!
where the "paul smith" is correct...

HELP!  I'm losing my mind

best,  paul


PS A this was to be a simple mod of a simple shopping cart done by
another. 6 hours later and counting... ;-)

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or 
send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Hidden Fields Problem

2000-08-22 Thread Philip Arnold - ASP

 If memory serves me...URL is a reserved variable name...

As long as it's scoped, it doesn't matter

If you just tried to call it as #URL#, then it would cause a JIT error, but
scoping it as #form.URL# works fine (a URL variable can't be part of the
form scope, as it's either one or the other)

Philip Arnold
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Hidden Fields Problem

2000-08-22 Thread Shane Pitts

Its because you didn't close the Quotes on the value of the field above it
*INPUT TYPE="hidden" NAME="cust_name" VALUE="#Form.cust_name#



-Original Message-
From: Deanna L. Schneider [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 22, 2000 12:15 PM
To: [EMAIL PROTECTED]
Subject: Re: Hidden Fields Problem


It's something on your actual form page that's throwing an error, so your're
getting error message content in your next "form field." Try checking for cf
syntax errors in the neighborhood of the 15th and 16th form fields.

-Deanna




Deanna Schneider
Interactive Media Developer
UWEX Cooperative Extension Electronic Publishing Group
103 Extension Bldg
432 N. Lake Street
Madison, WI 53706
(608) 265-7923




--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.