Ask a Question related to Coldfusion - Getting Started, Design and Development.
-
trickeyme #1
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
-
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... -
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... -
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... -
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... -
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... -
gmelanson #2
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
-
Dan Bracuk #3
Re: multi page forms
Step 1
<cfdump var="#session.ciapp#">
If that throws an error,
<cfdump var = "#session#">
Dan Bracuk Guest
-
BKBK #4
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



Reply With Quote

