<% Response.Buffer=True 'The following three lines of code are used to make sure that this page is not cached on the client. Response.CacheControl = "no-cache" Response.AddHeader "Pragma", "no-cache" Response.Expires = -1 'Set the session variable to an empty string and also destroy the session to make 'to complete the user session. Session("UID")="" Session.Abandon Response.Redirect "Logon.htm" Response.End %>