public ActionResult Index()
        {
            List <tbl_UserControl> tbl_UserControls = HelperController.GetCachedControls();

            tbl_UserControls = tbl_UserControls.Where(it => it.Active == true).OrderBy(it => it.Priority).ToList();

            return(View(tbl_UserControls));
        }
        public ActionResult LoadPageContent(string pageId, string id)
        {
            ViewBag.NewsId = id;

            List <tbl_UserControl> tbl_UserControls = HelperController.GetCachedControls();

            tbl_UserControls = tbl_UserControls.Where(it => it.Active == true && it.PageId == pageId).OrderBy(it => it.Priority).ToList();

            return(View(tbl_UserControls));
        }