示例#1
0
        public bool updateProfile()
        {
            int    userId      = Convert.ToInt32(UseKardoEncryption.getDecipherString(Session["KardoUserId"].ToString()));
            string name        = Request.Form["name"];
            string surname     = Request.Form["surname"];
            string mail        = Request.Form["mail"];
            string phone       = Request.Form["phone"];
            string countryCode = Request.Form["countryCode"];

            return(UserProfileModel.updateProfile(userId, name, surname, mail, phone, countryCode));
        }