コード例 #1
0
        static public void terminateSession()
        {
            HttpSessionStateBase session = new HttpSessionStateWrapper(HttpContext.Current.Session);

            session.Clear();
            session.Abandon();
        }
コード例 #2
0
ファイル: UserSession.cs プロジェクト: id717890/lc-manager
        public static string ReInit()
        {
            HttpSessionStateBase session = new HttpSessionStateWrapper(System.Web.HttpContext.Current.Session);

            session.Clear();
            session.Abandon();
            return(session.SessionID);
        }