Beispiel #1
0
        public ActionResult UpdateLinks(int id)
        {
            link link = LinkBLL.UpdateLinks(id);

            ViewBag.lid = link.id;
            ViewBag.tit = link.title;
            ViewBag.url = link.url;
            ViewBag.des = link.desc;
            return(View());
        }