I'm experimenting
using SESSIONS and could use some help.
I have a multiform
that submits to itself using sessions and then finally to another page to be
processed. I've set the session variable scope to the
following:
SESSION.multform
Currently my Application.cfm page already
uses SESSIONS to limit the time someone logs onto another page that has
nothing to do with the Multiple Form Page:
<CFAPPLICATION
NAME="loginApp"
SESSIONMANAGEMENT="Yes"
SESSIONTIMEOUT="#CreateTimeSpan(0,0,1,0)#">
<CFPARAM
name="session.checkedin" default="no">
My question is this.
What changes or additions do I need to make on the Application.cfm
to enable the session for the Multiple Form Page? Do I have to specify
another <CFAPPLICATION NAME> on the same page or make a new page called
Application1.cfm with the new <CFAPPLICATION NAME>?
Thank
you.
Arun
