application logout and session clearing
i have a logout button that deletes the user session variables and brings them to the login screen again. it runs this if statement (i found this somewhere on the internet years ago)
<CFIF Not ListFindNoCase('CFID,CFTOKEN,DEV_SITE,SERVER_ROOT,URL_ROOT,SESSIONID,URLTOKEN', Key)>
<CFSET StructDelete(Session, Key)>
</CFIF>
why shouldn't i also delete the CFID and CFTOKEN. aren't those associated with the user login? i notice in my CFADMIN server monitor for CF8 that even if a user logs out... they show as an active session in the cfmonitor until the 45 min session clears (i set it to 45 min in the application.cfc). i want them to be completely logged out with no trace and if they log back in get a new CFID and CFTOKEN... maybe someone can tell me why this could be a bad thing?