日期:2014-05-17 浏览次数:20387 次
@{ ViewBag.Title = "试试分页"; } @using MvcPageTest.Models @model Webdiyer.WebControls.Mvc.PagedList<Orders> <table width="98%"><tr><th>订单编号</th><th>订单日期</th><th>顾客编号</th><th>收货地址</th></tr> @foreach(Orders od in Model) { <tr><td>@od.OrderID</td><td>@od.OrderDate.ToString() </td> <td>@od.CustomerID</td><td>@od.ShipAddress</td></tr> } </table> <h2>Index</h2>