示例#1
0
        private void bindComments(List <OpenComment> comments)
        {
            IBlock block = getBlock("comment");

            foreach (OpenComment x in comments)
            {
                block.Set("comment.Title", strUtil.SubString(x.Content, 14));
                block.Set("comment.Url", to(new PostController().Show, x.TargetDataId) + "#comments");
                block.Next();
            }

            String lnkMore = BlogCommentController.GetMoreLink(comments.Count, ctx);

            set("commentMoreLink", lnkMore);
        }
示例#2
0
        private void bindComments(List <BlogPostComment> newComments)
        {
            IBlock commentblock = getBlock("comment");

            foreach (BlogPostComment comment in newComments)
            {
                commentblock.Set("comment.Title", strUtil.SubString(comment.Content, 14));
                commentblock.Set("comment.Url", Link.To(new PostController().Show, comment.RootId) + "#comments");
                commentblock.Next();
            }

            String commentMoreLink = BlogCommentController.GetCommentMoreLink(newComments.Count, ctx);

            set("commentMoreLink", commentMoreLink);
        }