public ActionResult AddOrEditFriendLink(WebFriendLink friendLink)
        {
            int result = 0;

            if (friendLink.ID > 0)
            {
                result = contentService.UpdateWebFriendLink(friendLink);
            }
            else
            {
                result = contentService.AddWebFriendLink(friendLink);
            }
            return(Json(new { RetCode = result }, JsonRequestBehavior.AllowGet));
        }