在数据库的mvc 4视图中显示有限的数据

时间:2013-03-11 11:45:55

标签: c# asp.net-mvc-4 jquery-pagination

我正在开发一个在线图书购物网站,在此我在一个从数据库动态生成的视图中显示书籍及其描述。 但是我希望每页显示10本书,并在页面底部显示链接以转到下一页以查看下一本10本书。 在这里,我附加了我的代码,它从数据库中获取所有数据,并在一个页面中一次显示所有书籍。我如何在此实现分页功能..

@{
    ViewBag.Title = "Contact";
}
@model IEnumerable<BusinessObject.Images>

<link href="../../css/style.css" rel="stylesheet" type="text/css" />
<div id="content">
<!-- Products -->
            <div class="products">
                <h3>Featured Products</h3>
                <ul>
@foreach (var item in Model)
{



                    <li>
                        <div class="product">
                        @Html.ActionLink(item.ImageName, "Details","Home", new { id = item.ImageId }, null) 

                                <span class="holder">
                                    <img src="@item.ImagePath" alt="">
                                    <span class="@item.ImageName" >@item.ImageName</span>
                                    <span class="author">by John Smith</span>
                                    <span class="description">Maecenas vehicula ante eu enim pharetra<br />scelerisque dignissim <br />sollicitudin nisi</span>
                                </span>
                            </a>
                            <a href="#" class="buy-btn">BUY NOW <span class="price"><span class="low">$</span>22<span class="high">00</span></span></a>
                        </div>
                    </li>}
                    </ul>
            </div>
            <div class="cl">&nbsp;</div>
            </div>

1 个答案:

答案 0 :(得分:0)

您只能从数据库本身请求所需数量的记录 - 分页

检查链接

http://www.mssqltips.com/sqlservertip/1699/sql-server-stored-procedures-to-page-large-tables-or-queries/