File: D:/web/secure/csl/bam/admin/logout.asp
<%Option Explicit%>
<%
Session("MenuName") = "Logout"
Session("MenuLink") = "logout.asp"
%>
<!--#include virtual="bam1/dbfunctions.asp"-->
<!--#include virtual="bam1/commonutils.asp"-->
<!--#include file="heading.asp"-->
<!--#include file="authenticate.asp"-->
<%
If gbAuthenticated Then
Session("Authenticated") = False
gbAuthenticated = False
Session("EndType") = "U" ' U means user logged out
RecordLog "LOGONOFF", "OFF"
Session.Abandon ' end the session
%>
<br><br>
<Strong><font size="3">You have been logged out.<BR>Click below to login.</font></Strong>
<table border="0" cellpadding="0" cellspacing="0" class="title">
<tr><td> </td></tr>
<tr><td nowrap><a href="main.asp">Login</a></td></tr>
</table>
<%
End If 'If gbAuthenticated Then
%>
<!--#include file="footing.asp"-->