CommunityServer按月分类无法分页解决方法
在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]