예제 #1
0
파일: HtmlUser.cs 프로젝트: withercn/advali
 public static bool IsOperatorLogged()
 {
     if (!string.IsNullOrEmpty(AdvAliCookie.GetCookieMemberId()))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
예제 #2
0
파일: HtmlUser.cs 프로젝트: withercn/advali
        public static int GetLoggedMemberId()
        {
            string memberid = AdvAliCookie.GetCookieMemberId();

            if (string.IsNullOrEmpty(memberid))
            {
                return(0);
            }
            string userid = clsdes.Decrypt(memberid);

            if (string.IsNullOrEmpty(userid))
            {
                return(0);
            }
            else
            {
                return(int.Parse(userid));
            }
        }