现在的位置: 首页 > 综合 > 正文

CommunityServer按月分类无法分页解决方法

2012年03月18日 ⁄ 综合 ⁄ 共 575字 ⁄ 字号 评论关闭

在View-Month.ascx里面的
<Blog:EntryListContainer id="Month" BlogThreadType="Month" runat="Server" DisplayExcerpts="true" EnablePaging="true" />

添加了EnablePaging="true"后底部会出现“Next Page”链接,但事实上根本没有分页,所有本月的文章会全部显示出来,就这个问题我在CommunityServer.Org提问了两天无人回答:(,看来只有靠自己。

分析代码之后发现“EntryListContainer.cs”跟显示有关系,查看了源码竟然发行有这么几行:

 

            //if (this.EnablePaging && this.PageSize != 0)
            //{
            //    query.PageIndex = entryItems.PageIndex;
            //    query.PageSize = PageSize;
            //}

去掉注释后编译,竟然成功了^_^,不知道为什么要注释掉。[name:CommunityServer Paging][tags:CommunityServer]

[From AlphaWu.Blog]

抱歉!评论已关闭.