コード例 #1
0
        public ActionResult Edit(long id)
        {
            SetViewBag();
            var dao     = new ContentDao();
            var content = dao.GetContentById(id);

            return(View(content));
        }