
mvc+webservice+存储过程分页
发布日期:2021-05-04 13:34:09
浏览次数:11
分类:技术文章
本文共 5282 字,大约阅读时间需要 17 分钟。
1.创建数据库
create database Persion
2.创建数据表
create table Student(
id int primary key identity,
Name varchar(50),
Pass varchar(50)
)
3.往表中插入数据
insert into Student values('美图','xiuxiu')//可以多插入几行
4.创建存储过程的分页
create proc usp_Page
@pagesize int=2, @pageindex int=1, @recordcount int output, @pagecount int output as begin select t.id, t.Name, t.Pass from(select *,rn=row_number() over(order by id asc) from Student) as t where t.rn between (@pageindex-1)*@pagesize+1 and @pagesize*@pageindex --计算总的记录条数 set @recordcount=(select count(*) from Student) --计算总页数 set @pagecount=ceiling(@recordcount*1.0/@pagesize)end
5.webservice调用分页
(1).返回分页数据
public DataTable PageShow(int pageIndex = 1, int pageSize = 2)
{ string consstr = "Data Source=.;Initial Catalog=Persion;Integrated Security=True"; DataTable dt = new DataTable(); using (SqlConnection conn = new SqlConnection(consstr)) { using (SqlCommand cmd = new SqlCommand("usp_Page", conn)) { cmd.CommandType = CommandType.StoredProcedure; cmd.Parameters.Add("@pagesize", SqlDbType.Int).Value = pageSize; cmd.Parameters.Add("@pageindex", SqlDbType.Int).Value = pageIndex; cmd.Parameters.Add("@recordcount", SqlDbType.Int).Direction = ParameterDirection.Output; cmd.Parameters.Add("@pagecount", SqlDbType.Int).Direction = ParameterDirection.Output; using (SqlDataAdapter dta = new SqlDataAdapter(cmd)) { dta.Fill(dt); return dt; } } }}
(2)返回分页行数
string count;
public string Count(int pageIndex=1,int pageSize=2) { string consstr = "Data Source=.;Initial Catalog=Persion;Integrated Security=True"; DataTable dt = new DataTable(); using (SqlConnection conn = new SqlConnection(consstr)) { using (SqlCommand cmd = new SqlCommand("usp_Page", conn)) { cmd.CommandType = CommandType.StoredProcedure; cmd.Parameters.Add("@pagesize", SqlDbType.Int).Value = pageSize; cmd.Parameters.Add("@pageindex", SqlDbType.Int).Value = pageIndex; cmd.Parameters.Add("@recordcount", SqlDbType.Int).Direction = ParameterDirection.Output; cmd.Parameters.Add("@pagecount", SqlDbType.Int).Direction = ParameterDirection.Output; using (SqlDataAdapter dta = new SqlDataAdapter(cmd)) { dta.Fill(dt); count = cmd.Parameters["@recordcount"].Value.ToString(); return count; } } }}
6.mvc调用webservice
public ActionResult Index(int pageIndex = 1, int pageSize = 2)
{ ViewData["pageIndex"] = pageIndex; ViewData["pageSize"] = pageSize; ViewData["total"] = int.Parse(page.Count(pageIndex,pageSize)); DataTable dt = page.PageShow(pageIndex,pageSize); var linq = from b in dt.AsEnumerable() select new Student() { id = b.Field<int>("id"), Name = b.Field<string>("Name"), Pass = b.Field<string>("Pass"), }; return View(linq.ToList());}
7.前台分页类
namespace System.Web.Mvc
{ public static class PageHtml { //输出分页的超级链接标签 //自定义分页的helper的扩展 public static HtmlString ShowPageNavigate(this HtmlHelper htmlHelper,int currentPage,int pageSize,int totalCount) { //路径 var redirectTo = htmlHelper.ViewContext.RequestContext.HttpContext.Request.Url.AbsolutePath; pageSize = pageSize == 0 ? 3 : pageSize; var totalPages=Math.Max((totalCount+pageSize-1)/pageSize,1);//总页数 var output = new StringBuilder(); if (totalPages > 1) { { //处理首页连接 output.AppendFormat("<a class='pageLink' href='{0}?pageIndex=1&pageSize={1}'>首页</a>", redirectTo, pageSize); } if (currentPage > 1) { //处理上一页连接 output.AppendFormat("<a class='pageLink' href='{0}?pageIndex={1}&pageSize={2}'>上一页</a>", redirectTo,currentPage-1,pageSize); } else { } output.Append(""); int currint = 5; for (int i = 0; i <=10; i++) { if ((currentPage + i - currint) >= 1 && (currentPage + i - currint) <= totalPages) { if (currint == i) { //当前页处理 output.AppendFormat("<a class='cpd' href='{0}?pageIndex={1}&pageSize={2}'>{3}</a>", redirectTo,currentPage, pageSize,currentPage); } else { //一般页处理 output.AppendFormat("<a class='pageLink' href='{0}?pageIndex={1}&pageSize={2}'>{3}</a>", redirectTo, currentPage+i-currint,pageSize, currentPage+i-currint); } } output.Append(""); } if (currentPage < totalPages) { //处理下一页的连接 output.AppendFormat("<a class='pageLink' href='{0}?pageIndex={1}&pageSize={2}'>下一页</a>", redirectTo, currentPage+1, pageSize); } output.Append(""); if (currentPage != totalPages) { output.AppendFormat("<a class='pageLink' href='{0}?pageIndex={1}&pageSize={2}'>末页</a>", redirectTo, totalPages, pageSize); } output.Append(""); } output.AppendFormat("第{0}页/共{1}页", currentPage, totalPages);//统计 return new HtmlString(output.ToString()); } }}
8.前台页面
@model IEnumerable<Text.Models.Student>
@{ Layout = null; } <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>Index</title> </head> <body> <p> @Html.ActionLink("Create New", "Create") </p> <table class="table"> <tr> <th> @Html.DisplayNameFor(model => model.Name) </th> <th> @Html.DisplayNameFor(model => model.Pass) </th> <th></th> </tr> @foreach (var item in Model) { <tr> <td> @Html.DisplayFor(modelItem => item.Name) </td> <td> @Html.DisplayFor(modelItem => item.Pass) </td> <td> @Html.ActionLink("Edit", "Edit", new { id = item.id }) | @Html.ActionLink("Details", "Details", new { id = item.id }) | @Html.ActionLink("Delete", "Delete", new { id = item.id }) </td> </tr> } </table> <div id="pageNam"> @Html.ShowPageNavigate((int)ViewData["pageIndex"], (int)ViewData["pageSize"], (int)ViewData["total"]) </div> </body></html>
已经测试过,全部可用
发表评论
最新留言
做的很好,不错不错
[***.243.131.199]2025年03月26日 03时55分27秒
关于作者

喝酒易醉,品茶养心,人生如梦,品茶悟道,何以解忧?唯有杜康!
-- 愿君每日到此一游!
推荐文章
Linux 上最好的五款音乐播放器 | Linux 中国
2019-03-03
如何用 Linux 命令行发电子邮件 | Linux 中国
2019-03-03
研究发现微软 OneDrive 上存储的恶意软件突然大幅增加
2019-03-03
网易云首倡中台方法论,发布全链路中台技术方案
2019-03-03
传输层协议
2019-03-03
DHCP和DHCP中继
2019-03-03
记录一次空指针异常(NullPointerException)的断点调试
2019-03-03
黄毅然的JAVA学习(七)
2019-03-03
数字营销专业术语介绍
2019-03-03
Spring5框架工具类
2019-03-03
OPC应用实例和故障排除培训
2019-03-03
什么是网络基础设施?
2019-03-03
如何加载dll文件计算UDS服务的秘钥
2019-03-03
网络安全需要通过高匿IP来实现
2019-03-03
如何让手机电脑拥有不同的IP地址呢?
2019-03-03
IP代理给模拟器多开和虚拟机多开提供了哪些帮助?
2019-03-03
细数哪些网络用户需要换IP?
2019-03-03
“山东大学移动互联网开发技术教学网站建设”项目实训日志一
2019-03-03