CF Structure
my structure element does not show all the values when I do the following:
<CFSET
client_address="#q_Info.street1# #q_Info.street2# #q_Info.street3# #q_Info.foreign_cityzip# #q_Info.country_code#">
All of these actually show values:
#q_Info.street1#
#q_Info.street2#
#q_Info.street3#
#q_Info.foreign_cityzip#
#q_Info.country_code#"
By doing this:
<CFSET client_address="#q_Info.street1# #q_Info.street2# #q_Info.street3# #q_Info.foreign_cityzip# #q_Info.country_code#">
client_address only show the value of #q_Info.street1#
Is there some kind of rule that I can't assign more values as the value of this structure element?
