problem with forms in CF MX 7 - submit does not work

Ask a Question related to Macromedia ColdFusion, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. [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. ...
  3. #2

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139