When a user has finished with your site, they may choose to close their session A session is a way to preserve certain data across subsequent accesses of the same web application. The session object contains many variables to store user information on the web server in a location that you choose in special files. The session support allows you to register arbitrary numbers of variables to be preserved across requests. Sessions are specific to individual users. As a result, every user has a separate session and has access to a separate set of Session variables.. Or this can be done in an automatic manner, when the user enters a certain page. This is called a logout operation.
To implement this action, MX User Login contains a server behavior A server behavior is a reusable component for server-side development. They add blocks of code to your pages for accomplishing specific tasks. Dreamweaver comes with several default server behaviors and the InterAKT extensions add many more to this list. called Logout User. You can access it from the Application panel, Server Behaviors -> + -> MX Kollection -> User Login -> Logout User. The user interface has only one tab.
To set the dialog box options, follow the next steps:
Note: If you use this server behavior on the ColdFusion server model, a file named Application.cfm will be automatically generated in the site root folder. Do not delete this file, as it contains settings related to session variables used by the server behavior and the current application. If you remove this file or modify it, application pages that use sessions will not function properly.
Related Topics