> so what would I need to change the line below to ??
> 
>  <CFSET application.loggedin[#session.cfid# 
> #session.cftoken#] = now()>
> 

  <CFSET application.loggedin["#session.cfid# #session.cftoken#"] =
now()>

The problem you are having is a syntax one. What you did was kind of
like doing:

<cfset x = #foo# #goo#>

This will cause an error because of missing quotes as well. It would be
changed to:

<cfset x = "#foo# #goo#">

-rc


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

                                Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
                                

Reply via email to