コード例 #1
0
        public ActionResult SelectPostReply(int commpostid)
        {
            var repluy = PostManage.findallreply(commpostid);

            if (repluy == null)
            {
                return(HttpNotFound());
            }
            ViewModels.ForumPost indew = new ViewModels.ForumPost();
            indew.Replypost = repluy;

            return(View(indew));
        }