Copy link to clipboard
Copied
I want to have users logout. How do I log them out. I can't figure out what tag(s) to use. Thanks, k
Copy link to clipboard
Copied
Well it all kind of depends what you do to log them in in the first place. What constitutes "logged in" in your application?
--
Adam
Copy link to clipboard
Copied
I want to have users logout. How do I log them out. I can't figure out what tag(s) to use.
Log them in using cflogin and cfloginuser. Log them out by redirecting those who click on the logout button to a cfm page containing the tag <cflogout>
Copy link to clipboard
Copied
Oh, and you should ideally let sessions end, rather than attempt to end them. Use Application.cfc. It will help you manage login and sessions.