> Hey guys I cab get cflogin to work but when I use > cfloginuser to set name and password and role how > to access them in my app. I tried session.name, > client.name application.name so it seems to me as > if nothing is set. What am I missing? Thank you!
The CFLOGIN and CFLOGINUSER tags don't have anything to do with other persistent variable scopes. A successful login with CFLOGINUSER sets a non-persistent cookie on the browser which is used only for CFLOGIN. If you want to find out your logged-in user's name, use the GetAuthUser() function. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| 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 Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

