public ActionResult LikeLink(string LinkId)
        {
            DataRepository helper = new DataRepository();

            helper.LikeLink(Convert.ToInt32(LinkId));

            ViewData["Id"] = LinkId;

            return PartialView();
        }