我正在使用 MVC 3、Razor 和实体框架。我正在使用 MVC 3 制作博客,所以博客上有很多帖子。在我现在显示的主页上说 10 个帖子。
我正在使用以下代码来显示帖子。
<h1 class="postTitle">@Html.ActionLink(post.PostTitle, "SinglePost", "Post", new { postID = post.PostID}, null)</h1>
<div class="postDateTime"><b>Posted on :</b> @post.PostDateTime</div>
<br/>
@if(post.PostContent.Length > 500)
{
<span>@post.PostContent.Substring(0, 500) [Read More...]</span>
}
else
{
<span>@post.PostContent</span>
}
<hr class="postSeparator"/>
</div>
我有点困惑如何为此实现分页,或者更好地在 SO 实现类似的东西。请指导我这个家伙。