[thelist] form data gone

Burhan Khalid burhankhalid at members.evolt.org
Mon May 20 14:15:00 CDT 2002


Sounds like a good candidate for a session variable. Don't know CF, so I
don't know what the CFML equivalent of a session variable is. You could set
it once, and it would be available regardless of back-forward button use.

Example flow :

//strsv_FirstName = Session Variable for First Name.

strsv_FirstName = session("firstname")

if (!strsv_firstName) //first time visitor
{
    displayPlainForm()
}

else {

        displayFormWithName()
}

hth,
Burhan Khalid




More information about the thelist mailing list