//清除全部Session
Session.Abandon();
//清除单个Session
Session[“UserName”] = null;
Session.Remove(“UserName”);