Steve,
>
> I have a question about session variables. Has anyone
> encountered specific
> versions of browsers that don't work with session management in CF? If
> SETCLIENTCOOKIES is turned off in an application, how do most people pass
> the CFID and CFTOKEN variables? Would the code below work?
>
> <CFOUTPUT>
> <INPUT TYPE="HIDDEN" NAME="URLTOKEN" VALUE="#session.urltoken#">
> </CFOUTPUT>
>
You have to pass the cfid and cftoken as url variables. The above doesn't
work, you need to pass them as part of the form action or as part of the a
link URL.
eg. <form action="index.cfm?#session.urltoken#" ......
or <a href="index.cfm?#session.urltoken#" .....
You will need to place cfoutput's around the above.
Regards
Stephen
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at
http://www.fusionauthority.com/bkinfo.cfm
------------------------------------------------------------------------------
To unsubscribe, send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body or visit the list page at www.houseoffusion.com