Suppose you have the following LoginStatus:
<asp:LoginStatus ID="LoginStatus1" runat="server" LogoutAction="RedirectToLoginPage" OnLoggedOut="LoginStatus1_LoggedOut" />
Define this in your code behind. This will clear all session values initiated.
protected void LoginStatus1_LoggedOut(object sender, EventArgs e)
{
Session.Abandon();
}