Ask a Question related to Macromedia ColdFusion, Design and Development.
-
suep #1
problem with forms in CF MX 7 - submit does not work
Hi. My servers recently were upgraded to CF MX 7 from 6.1. A couple forms are
now broken. The page hangs when the submit button is pressed. Strangely, it
seems to involve a text input box. Works ok if the text field has 2 characters
but hangs when more than 2 are entered.
My code: <cfinput type="text" name="test" size=20 maxlength=75"
value="#MyFldValue#" required="no" > Worked fine in 6.1.
I thought perhaps something is amiss with the new validation, so I tried
playing around with the validateAt tag, but no luck.
Thanks for any insight you can provide.
Sue
[email]sue@superpage.com[/email]
suep Guest
-
Forms - submit button doesn't work right when windows users reply to mac-generated form
I created a form with a button to automatically return the form to me. The return function works on my mac computers but when I send it to windows... -
Auto-submit forms
Hi, I have two forms I'm using to manage data for an online store. The first form is an input form, and the second is a formatting form (amoung... -
fill and submit forms
That is not true. I created a form that works fine with the SUBMIT button and I receive the FDF in the email. No Problem. What's killing me is that... -
can pdf forms be used to submit data into a db?
In article <OFC01C59D2.F2BFDEC6-ON0A256D8F.0007CBC2- 0A256D8F.0007DB4B@courts.state.hi.us>, Ryan.K.Look@courts.state.hi.us says... I think the... -
[PHP] can pdf forms be used to submit data into a db?
Look here: http://sk2.php.net/manual/en/ref.fdf.php Thanks you fixed the missing indefinite article, I was not going to answer the original. ... -
chris2u99 #2
Re: problem with forms in CF MX 7 - submit does not work
Hi Sue,
Not to get too picky here, however, in your example above you are missing a
quote from your maxlength field.
Your example:
<cfinput type="text" name="test" size=20 maxlength=75" value="#MyFldValue#"
required="no" >
Should be:
<cfinput type="text" name="test" size=20 maxlength="75" value="#MyFldValue#"
required="no" >
I don't know if this will help or not but try and see.
Christopher Morris
chris2u99 Guest



Reply With Quote

