> Yes...I didn't change the line that was calling in the 
> cookie. Now I get an error in my application saying that that 
> it can't resolve the parameter SESSION.VariableName
> 
> Do I have to set it, maybe in my application.cfm to be "Nil" at first?

That, or wrap your check for it:

<cfif IsDefined("Session.VariableName")>
 <cfset VariableName=Session.VariableName>
<cfelse>
 <cfset VariableName="">
</cfif>

Then use Variables.VariableName for the rest of your page.

(Don't forget your locks!)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Reply via email to