Пример #1
0
        public static string GetUserTags(long profileUserId)
        {
            try
            {
                HttpCookie cookie = HttpContext.Current.Request.Cookies["Tagged"];

                var blltag = new BllTag();
                return(blltag.GetUserTags(profileUserId, Convert.ToInt64(UtilityClass.DecryptStringAES(cookie["d"]))));
            }
            catch (Exception ex)
            {
                ex.ToExceptionless().Submit();
            }
            return("");
        }