Ok this works down to the point where I have the <cfoutput>  What do I put
in there if I want to look at the Last_name of the user that is stored in
the structure client.UserData??

I know that the Structure is being filled because I can use cf_objectdump
and it displays everything in the structure.  I just can't figure out how to
output it so that I can use it in meaningful ways.

<cfquery name="get_user_data" datasource="#caller.maindsn#">
select id, cfid, member_id, member_password, password_hint,     last_name,
        first_name,     phone, address1, address2, city, state, zip, country,
        comments, account_active_status, date_created, terms_agreed
from member
where cfid = '#client.cfid#'
</cfquery>
<cf_querytostruct
        QueryName="get_user_data"
        KeyColumn="id"
        r_Struct="Client.UserData"
        >
<cf_objectdump object="#Client.UserData#">
<cfoutput>#Client.UserData#</cfoutput>

Thanks.

Bill

------------------------------------------------------------------------------
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/fusebox or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to