You are correct in your understanding of client vars. If you are using cookies to store client vars then keep in mind that cannot use a CFLOCATION after a <CFSET CLIENT....> statement. The following will cause the client var not to be set:
<cfset client.userID = 1> <cflocation url="home.cfm"> Also, beware using the registry to store client vars! + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

