I'm making a link to "Close Session"
<li><a id="Logout" href="#" onclick="btLogOut" runat="server">Cerrar Sesión</a></li>
and with the method
public void btLogOut()
{
System.Web.Security.FormsAuthentication.SignOut();
Session.Abandon();
Response.Redirect("Login.aspx");
}
But it's not working for me, please tell me what I'm doing wrong.