para quitarle el valor al session podrias simplemente setearlo de esta manera :
Código c#:
Ver original  protected void btnDesloguearse_Click1(object sender, EventArgs e)
  {
  HttpContext.Current.Session.Clear();
  HttpContext.Current.Session.Abandon();
  FormsAuthentication.SignOut();
Session[SesionEmpleado.UsuarioEmpleado] = null;
  Server.Transfer("~/PaginaPrincipal.aspx");
}