예제 #1
0
        public ActionResult CommentUpdateView(int CommentID)
        {
            ArticleComments   ac   = new ArticleComments();
            ArticleCommentsVO acvo = ac.OneSelect(CommentID);

            ViewBag.Comments  = acvo.Comments;
            ViewBag.CommentID = acvo.CommentID;
            return(View());
        }