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

  1. #1

    Default multi page forms

    I am ready to throw my pc out of the window!!! Help

    I am trying to create an (initially) 2 page form using session varables but am
    constantly getting error messages around the
    <CFSWITCH EXPRESSION="#SESSION.ciapp.StepNum#"> tags telling me that it is
    undefined in session.

    Can anyone point me to some sample code so i can see what i am doing wrong,
    alternavely i can paste the code.

    Thanks in advance

    trickeyme Guest

  2. Similar Questions and Discussions

    1. Splitting or separating 1 multi page pdfdocument into individual page documents
      I am looking for any product that will take a multi page pdf file and burst or separate it into individual pdf files created from each page. Mac...
    2. forms auth - session timeout - multi domains - POST values
      I have several questions. 1) Does forms authentication store and re-send data intended for the secured page via a post request during its...
    3. How to make multi page MS Word to multi page pdf
      I have a five page MSWord X document that when exported to PDF only captures the first page. The document is sectioned(1st and 2nd pages are in...
    4. Forms - multi-column sort, export label captions
      Good day, I have 2 questions and hopefully someone can help me or give me some ideas. Firstly, I would like to be able to export data from a form...
    5. multi-part forms in CGI.pm
      Hi, I am a new comer to CGI.pm and find it extremely useful. I have created multi-form pages and with little struggle have succesfully been able to...
  3. #2

    Default Re: multi page forms

    If this variable is defined then your problem relies in your <CFapplication name="xxx">

    make sure the name of the application is the same when your declaring your variable and when your calling it
    gmelanson Guest

  4. #3

    Default Re: multi page forms

    Step 1
    <cfdump var="#session.ciapp#">

    If that throws an error,
    <cfdump var = "#session#">
    Dan Bracuk Guest

  5. #4

    Default Re: multi page forms

    I think it means just that. Coldfusion did not find code like
    SESSION.ciapp.StepNum = "so-and-so" prior to the switch tag. Verify spelling
    and scope of "ciapp.StepNum". To be sure your variable will always be defined,
    apply something like

    <cflock scope="SESSION" type="Exclusive" timeout="5">
    <cfparam name="session.ciapp.Num" type="numeric" default="10">
    </cflock>

    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