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

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

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

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

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)

RE: Hidden Fields Problem

2000-08-22 Thread Shane Pitts
IL 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