Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Form Help Revisited

    HI run into a couple of problems.

    1. When there isn't anything written in the text field the page errors.
    2. I also have check boxes - but if they are left unchecked it erorrs
    3. For drop down menus i cant get anything rolling.

    4. Maybe this is going to tricky but ... I have the results of a symptom
    search that is sent to the top of the form sheet.

    the user chooses a letter from the alphabet which leads them to a list of
    symptoms starting with that letter then they add the appropriate symptoms to a
    list - when they decide to view their symptom list the user is asked to
    complete the health form.

    I want all of this information to be sent to to the printer friendly page. Is
    this possible?

    Many thanks
    Mark


    quiero mas Guest

  2. Similar Questions and Discussions

    1. Harum-girl revisited
      Gents: So it happened almost like this ... I was giving my Ubuntu-box a rest ( after the 19th failure to enable MYSQL ) , and reading a...
    2. Still need unlink help!! God help me. - Revisited
      <20030808202717051099.GyazMail.neuroball@usa.net> <YW50aWdvbmU=.45ab06a65368617cf57750f9f6311818@1060402929.cotse.net>
    3. download old browsers revisited
      I did find a post here on this topic indicating that you cannot run more than one version of IE on an operating system. Is this also true of...
    4. Shutter delay revisited
      On 10 Jul 2003 18:29:59 GMT, Roland Karlsson <roland_dot_karlsson@bonetmail.com> wrote: I somehow presumed you were an "old hand" with...
    5. Permission Problems revisited
      Thanks for all the answers. I'm still somewhat in the fog. The installation owner is 'oracle'. User A is a different user. And still I would like...
  3. #2

    Default Re: Form Help Revisited

    For #'s 1 and 2, use <CFPARAM> at the top of your form's action page.
    Like:

    <CFPARAM name="FORM.text_field" default="">
    <CFPARAM name="FORM.CheckBox1" default="No">
    <CFPARAM name="FORM.CheckBox2" default="No">

    etc., etc.

    For problem 3, start a new thread and be more specific.

    For problem 4, You can do a printer friendly page in many ways....
    (A) Always use CSS to generate a native print that works OK. Do this in
    addition to anything else (PDF, etc).
    (B) You can generate a PDF document or a flashpaper output.
    (C) You can use javascript to automatically pop up the print dialog.




    MikerRoo 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