Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default value of check box

    I have checkbox as following

    <INPUT TYPE="checkbox" NAME="BannerAds" VALUE="<b>Affiliate</b><br>Affilate">
    <INPUT TYPE="checkbox" NAME="BannerAds" VALUE="<b>Visa</b><br>Visa">
    <INPUT TYPE="checkbox" NAME="BannerAds" VALUE="<b>Free</b><br>Free">

    <cfif #form.checkbox# is "<b>Affiliate</b><br>Affilate">
    <cfdocument>
    <cfoutput>#form.checkbox#</cfoutput>
    </cfif>

    but the cfif condition is not correct. How do i fix that?

    sweetyp2005 Guest

  2. Similar Questions and Discussions

    1. Spell Check and Grammer Check
      Hello, Does anybody know about some good spell checker/grammer checker for html/asp pages? Thank you, Regards, Raj.
    2. Turning off Check in / Check out feature
      How can I turn off the check in / check out feature? Can't seem to find it in the Contribute HELP. Thanks!
    3. "loaner laptop" check-in/check-out program?
      Hi Folks, I am looking for a PHP or PERL application that will enable end users to check-out and check-in loaner laptop computers for my firm. ...
    4. Check to see if Check Boxes are Checked
      How do I check to see if a checked box is check on the following page? This is what I have. What am I doing wrong? <%If...
    5. Quick Mac Check? and anyone else who would like to check it too
      http://jaschob.com/protoSite/index.html Hi All, Just finished up a prototype site design. I have tested this with winpxpro, EI6 & NN7. Once at...
  3. #2

    Default Re: value of check box

    Try this:

    <cfif form.BannerAds is "<b>Affiliate</b><br>Affilate">
    <cfdocument>
    <cfoutput>#form.BannerAds#</cfoutput>
    </cfif>

    The name of the form field uses the name attribute.
    SteveBryant Guest

  4. #3

    Default Re: value of check box

    The value of a submitted checkbox is "on" or "".

    <cfset bannerVal1 = "<b>Affiliate</b><br>Affilate"> <!--- Affiliate ? --->
    <cfset bannerVal2 = "<b>visa</b><br>visa">
    <cfset bannerVal3 = "<b>Free</b><br>Free">
    <form>
    <INPUT TYPE="checkbox" NAME="BannerAds1"> Affilate<br>
    <INPUT TYPE="checkbox" NAME="BannerAds2"> Visa <br>
    <INPUT TYPE="checkbox" NAME="BannerAds3"> Free
    </form>
    <cfif IsDefined("form.BannerAds1") and form.BannerAds1 is "on">
    <cfdocument>
    <cfoutput>#bannerVal1#</cfoutput>
    </cfif>
    <cfif IsDefined("form.BannerAds2") and form.BannerAds2 is "on">
    <cfdocument>
    <cfoutput>#bannerVal2#</cfoutput>
    </cfif>
    <cfif IsDefined("form.BannerAds3") and form.BannerAds3 is "on">
    <cfdocument>
    <cfoutput>#bannerVal3#</cfoutput>
    </cfif>

    If the user must make only one selection out of the three, then Radio buttons
    will do a better job than checkboxes.

    <input type="radio" value="<b>Affiliate</b><br>Affilate"
    name="BannerAds">Affilate<br>
    <input type="radio" value="<b>visa</b><br>visa" name="BannerAds">Visa<br>
    <input type="radio" value="<b>Free</b><br>Free" name="BannerAds">Free




    BKBK Guest

  5. #4

    Default Re: value of check box

    I've not used the cfdocument tag, but the reference manual states that format
    is a required field.
    You have no /cfdocument within the cfif block
    You should pre-check one of the checkboxes or use a cfparam in your form
    handler

    Regards.

    PaulKD Guest

  6. #5

    Default Re: value of check box

    ....format is a required parameter. You have no /cfdocument within the cfif block
    Thanks for pointing out the oversight, PaulKD. I've made the correction.
    BKBK 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