本文实例为大家分享了mvc使用MvcPager实现分页效果的具体代码,供大家参考,具体内容如下 一、数据库表 USE [StudentDB] Go SET ANSI_NULLS
本文实例为大家分享了mvc使用MvcPager实现分页效果的具体代码,供大家参考,具体内容如下
USE [StudentDB]
Go
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[UserInfo](
[customerID] [int] IDENTITY(1,1) NOT NULL,
[customerName] [varchar](50) NOT NULL,
[PID] [varchar](50) NOT NULL,
[telephone] [varchar](50) NOT NULL,
[address] [varchar](20) NULL,
PRIMARY KEY CLUSTERED
(
[customerID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY],
CONSTRaiNT [UQ_PID] UNIQUE NONCLUSTERED
(
[PID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO
ALTER TABLE [dbo].[UserInfo] WITH CHECK ADD CONSTRAINT [CK_PID] CHECK ((len([PID])=(15) OR len([PID])=(18)))
GO
ALTER TABLE [dbo].[UserInfo] CHECK CONSTRAINT [CK_PID]
GO
ALTER TABLE [dbo].[UserInfo] WITH CHECK ADD CONSTRAINT [CK_telephone] CHECK ((len([telephone])=(11)))
GO
ALTER TABLE [dbo].[UserInfo] CHECK CONSTRAINT [CK_telephone]
GO
using System;
using System.Collections.Generic;
using System.Linq;
using System.WEB;
namespace Web.Models
{
public class UserInfo
{
private int customerID;
public int CustomerID
{
get { return customerID; }
set { customerID = value; }
}
private string customerName;
public string CustomerName
{
get { return customerName; }
set { customerName = value; }
}
private string pid;
public string Pid
{
get { return pid; }
set { pid = value; }
}
private string telephone;
public string Telephone
{
get { return telephone; }
set { telephone = value; }
}
private string address;
public string Address
{
get { return address; }
set { address = value; }
}
}
}
添加MvcPager.dll,并引用MvcPager的命名空间Webdiyer.WebControls.Mvc。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Web.Models;
using Webdiyer.WebControls.Mvc;
namespace Web.Controllers
{
public class HomeController : Controller
{
//
// GET: /Page/
//默认分页
private const int defaultPageSize = 5;
//
public ActionResult Index(int? id)
{
using (DBDataContext db = new DBDataContext())
{
IQueryable<UserInfo> p = from c in db.UserInfo
select new UserInfo { CustomerID = c.customerID, CustomerName = c.customerName, Telephone = c.telephone, Pid = c.PID, Address = c.address };
PagedList<UserInfo> m = p.ToPagedList(id ?? 1, defaultPageSize);
return View(m);
}
}
}
}
fo>>" %>
<%@ Import Namespace="Web.Models" %>
<%@ Import Namespace="Webdiyer.WebControls.Mvc" %>
<!DOCTYPE html>
<html>
<head runat="server">
<meta name="viewport" content="width=device-width" />
<title>Index</title>
<%--样式表--%>
<link href="../../Content/Site.CSS" rel="stylesheet" type="text/css" />
<script src="../../Scripts/Jquery-1.8.2.min.js" type="text/javascript"></script>
</head>
<body>
<div class="divfloat">
<div id="divpages">
<table>
<tr>
<th>编号
</th>
<th>姓名
</th>
<th>身份证号
</th>
<th>电话号码
</th>
<th>地址
</th>
</tr>
<%foreach (UserInfo od in Model)
{
%>
<tr>
<td>
<%=od.CustomerID.ToString() %>
</td>
<td>
<%=od.CustomerName.ToString() %>
</td>
<td>
<%=od.Pid.ToString() %>
</td>
<td>
<%=od.Telephone.ToString() %>
</td>
<td>
<%=od.Address.ToString() %>
</td>
</tr>
<%
} %>
</table>
new ajaxOptions() { UpdateTargetId = "divpages" })%>--%>
<%=Html.Pager(Model, new PagerOptions
{
PageIndexParameterName = "id",
CssClass = "pages",
FirstPageText = "首页",
LastPageText = "末页",
PrevPageText = "上一页",
NextPageText = "下一页",
CurrentPagerItemWrapperFORMatString = "<span class=\"cpb\">{0}</span>",
ShowPageIndexBox = true,
NumericPagerItemWrapperFormatString = "<span class=\"item\">{0}</span>",
PageIndexBoxType = PageIndexBoxType.DropDownList,
ShowGoButton = false,PageIndexBoxWrapperFormatString=" 转到{0}",SeparatorHtml = "" })%>
</div>
</div>
</body>
</html>
--结束END--
本文标题: MVC使用MvcPager实现分页效果
本文链接: https://lsjlt.com/news/144031.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2023-05-21
2023-05-21
2023-05-21
2023-05-21
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0