WebForm 分页与组合查询

1.封装实体类

2.写查询方法

//SubjectData类
public List<Subject> Select(string name){List<Subject> list = new List<Subject>();cmd.CommandText = "select *from Subject where SubjectName like @a ";cmd.Parameters.Clear();cmd.Parameters.Add("@a","%"+name+"%");conn.Open();SqlDataReader dr = cmd.ExecuteReader();if (dr.HasRows){while (dr.Read()){Subject s = new Subject();s.SubjectCode = dr[0].ToString();s.SubjectName = dr[1].ToString();list.Add(s);}}conn.Close();return list;}
//StudentData类/// <summary>/// 查询方法/// </summary>/// <param name="tsql">SQL语句</param>/// <param name="hh">哈希表</param>/// <returns></returns>public List<Student> Select(string tsql,Hashtable hh){List<Student> list = new List<Student>();cmd.CommandText = tsql;cmd.Parameters.Clear();foreach( string s in hh.Keys){cmd.Parameters.Add(s,hh[s]);}conn.Open();SqlDataReader dr = cmd.ExecuteReader();if (dr.HasRows){while (dr.Read()){Student s = new Student();s.Code = dr[0].ToString();s.Name = dr[1].ToString();s.Sex = Convert.ToBoolean(dr[2]);s.Birthday = Convert.ToDateTime(dr[3]);s.SubjectCode = dr[4].ToString();s.Nation = dr[5].ToString();list.Add(s);}}conn.Close();return list;}查询方法

3.Page_Load部分,最大页方法

int PageCount = 5; //每页显示条数Hashtable hs = new Hashtable();protected void Page_Load(object sender, EventArgs e){if(!IsPostBack){string tsql = "select top "+PageCount+" *from Student";//查询前PageCount条数据//Repeater1数据源指向List<Student> list = new StudentData().Select(tsql,hs);Repeater1.DataSource = list;Repeater1.DataBind();Label2.Text = "1";//第一页//获取最大页string sql = "select *from Student";Label3.Text = MaxPageNumber(sql,hs).ToString();for (int i = 1; i <= MaxPageNumber(sql,hs); i++)//给可快速跳转列表框赋值
    {DropDownList2.Items.Add(new ListItem(i.ToString(), i.ToString()));}
}
}Page_Load
public int MaxPageNumber(string sql, Hashtable hs){List<Student> list = new StudentData().Select(sql, hs);//查询所有数据double de = list.Count / (PageCount * 1.0);int aa = Convert.ToInt32(Math.Ceiling(de));//取上限return aa;}获取最大页

4.根据组合查询拼接语句方法

/// <summary>/// /// </summary>/// <param name="sql">拼接查询前PageCount条数据的语句</param>/// <param name="sql2">查询所有的语句</param>/// <param name="tj">用于分页查询与sql等拼接</param>/// <param name="count">判断前几项是否为空</param>private void Tsql(out string sql, out string sql2,out string tj,out int count){count = 0;sql = "select top " + PageCount + " *from Student";sql2 = "select *from Student";tj = "";//性别不为空if (!string.IsNullOrEmpty(tb_sex.Text.Trim())){//判断输入的是男是女,其它输入默认为未输入内容if (tb_sex.Text.Trim() == ""){sql += " where Sex = @a";sql2 += " where Sex = @a";tj += " where Sex = @a";hs.Add("@a", "true");count++;}else if (tb_sex.Text.Trim() == ""){sql += " where Sex = @a";sql2 += " where Sex = @a";tj += " where Sex = @a";hs.Add("@a", "false");count++;}}//年龄不为空if (!string.IsNullOrEmpty(tb_age.Text.Trim())){int a = DateTime.Now.Year;//获取当前时间的年try//确保输入的是数字
            {int ag = Convert.ToInt32(tb_age.Text.Trim());int g = a - ag;DateTime d = Convert.ToDateTime(g.ToString() + "-1-1");if (DropDownList3.SelectedValue == ">=")//小于或等于您输入的年龄,即大于或等于某个时间
                {if (count == 0)//前面的一项未输入(性别)
                    {sql += " where Birthday " + DropDownList3.SelectedValue + "@b";sql2 += " where Birthday " + DropDownList3.SelectedValue + "@b";tj += " where Birthday " + DropDownList3.SelectedValue + "@b";}else{sql += " and Birthday " + DropDownList3.SelectedValue + "@b";sql2 += " and Birthday " + DropDownList3.SelectedValue + "@b";tj += " and Birthday " + DropDownList3.SelectedValue + "@b";}hs.Add("@b", d);}else//大于或等于您输入的年龄,即小于或等于某个时间
                {DateTime dd = Convert.ToDateTime(g.ToString() + "-12-31");if (count == 0){sql += " where Birthday " + DropDownList3.SelectedValue + "@b";sql2 += " where Birthday " + DropDownList3.SelectedValue + "@b";tj += " where Birthday " + DropDownList3.SelectedValue + "@b";}else{sql += " and Birthday " + DropDownList3.SelectedValue + "@b";sql2 += " and Birthday " + DropDownList3.SelectedValue + "@b";tj += " and Birthday " + DropDownList3.SelectedValue + "@b";}hs.Add("@b", dd);}count++;}catch{}}if (!string.IsNullOrEmpty(tb_s.Text.Trim()))//判断专业是否为空
        {List<Subject> li = new SubjectData().Select(tb_s.Text.Trim());//调用查询方法模糊查询专业if (li.Count <= 0)//未查到数据
            {}else//查到数据
            {int cou = 0;//用于查到的为多条数据foreach (Subject ub in li){if (li.Count == 1)//只查到一条数据
                    {if (count == 0)//性别与年龄输入框都未输入内容
                        {sql += " where SubjectCode =@c";sql2 += " where SubjectCode =@c";tj += " where SubjectCode =@c";}else{sql += " and SubjectCode =@c";sql2 += " and SubjectCode =@c";tj += " and SubjectCode =@c";}hs.Add("@c", ub.SubjectCode);cou++;count++;}else//查到多条数据
                    {if (cou == 0)//第一次遍历
                        {if (count == 0){sql += " where (SubjectCode =@c";sql2 += " where (SubjectCode =@c";tj += " where (SubjectCode =@c";}else//性别与年龄输入框都未输入内容
                            {sql += " and (SubjectCode =@c";sql2 += " and (SubjectCode =@c";tj += " and (SubjectCode =@c";}hs.Add("@c", ub.SubjectCode);cou++;}else{sql += " or SubjectCode =@d)";sql2 += " or SubjectCode =@d)";tj += " or SubjectCode =@d)";hs.Add("@d", ub.SubjectCode);}}}}}}Tsql方法
View Code

5.组合查询 按钮功能赋予

void Button2_Click(object sender, EventArgs e){       string sql;//拼接查询前PageCount条数据的语句string sql2;//查询所有的语句string tj;int count;Tsql(out sql, out sql2,out tj,out count);Repeater1.DataSource = new StudentData().Select(sql, hs);//数据指向
        Repeater1.DataBind();Label2.Text = "1";Label3.Text = MaxPageNumber(sql2,hs).ToString();//获取当前的最大页
        DropDownList2.Items.Clear();for (int i = 1; i <= MaxPageNumber(sql2,hs); i++)//更新快捷跳转列表框
        {DropDownList2.Items.Add(new ListItem(i.ToString(), i.ToString()));}}组合查询
View Code

6.分页代码

void btn_next_Click(object sender, EventArgs e){int pagec = Convert.ToInt32(Label2.Text) + 1;//获取下一页为第几页string sql;//拼接查询前PageCount条数据的语句string sql2;//查询所有的语句string tj;int count;Tsql(out sql, out sql2, out tj, out count);if (pagec > MaxPageNumber(sql2,hs))//当前为最大页
        {return;}else{if(count>0)//进行的是组合查询的下一页跳转
           {sql += " and Code not in(select top " + (PageCount * (pagec - 1)) + " Code from Student " + tj + ")";}else{sql += " where Code not in(select top " + (PageCount * (pagec - 1)) + " Code from Student " + tj + ")";}}Repeater1.DataSource = new StudentData().Select(sql, hs);//数据指向
        Repeater1.DataBind();Label2.Text = pagec.ToString();//更新当前页面DropDownList2.SelectedValue = pagec.ToString();}下一页
View Code
void btn_prev_Click(object sender, EventArgs e){int pagec = Convert.ToInt32(Label2.Text) - 1;//获取上一页为第几页string sql;//拼接查询前PageCount条数据的语句string sql2;string tj;int count;Tsql(out sql, out sql2, out tj, out count);if (pagec <= 0)//当前为第一页
        {return;}if (count > 0)//进行的是组合查询的上一页跳转
        {sql += " and Code not in(select top " + (PageCount * (pagec - 1)) + " Code from Student " + tj + ")";}else{sql += " where Code not in(select top " + (PageCount * (pagec - 1)) + " Code from Student " + tj + ")";}List<Student> list = new StudentData().Select(sql, hs);//数据指向Repeater1.DataSource = list;Repeater1.DataBind();Label2.Text = pagec.ToString();//更新当前页面DropDownList2.SelectedValue = pagec.ToString();}上一页
上一页
void btn_first_Click(object sender, EventArgs e){string sql;string sql2;string tj;int count;Tsql(out sql, out sql2, out tj, out count);List<Student> list = new StudentData().Select(sql, hs);//数据指向Repeater1.DataSource = list;Repeater1.DataBind();Label2.Text = "1";DropDownList2.SelectedValue = "1";}跳转到第一页
首页
void btn_end_Click(object sender, EventArgs e){string sql;string sql2;string tj;int count;Tsql(out sql, out sql2, out tj, out count);if (count > 0)//进行的是组合查询的末页跳转
        {sql += " and Code not in(select top " + (PageCount * (MaxPageNumber(sql2,hs) - 1)) + " Code from Student " + tj + ")";}else{sql += " where Code not in(select top " + (PageCount * (MaxPageNumber(sql2, hs) - 1)) + " Code from Student " + tj + ")";}List<Student> list = new StudentData().Select(sql, hs);//数据指向Repeater1.DataSource = list;Repeater1.DataBind();Label2.Text = MaxPageNumber(sql2,hs).ToString();DropDownList2.SelectedValue = MaxPageNumber(sql2,hs).ToString();}最后一页跳转
末页
void DropDownList2_SelectedIndexChanged(object sender, EventArgs e){string sql;string sql2;string tj;int count;Tsql(out sql, out sql2, out tj, out count);if (count > 0)//进行的是组合查询的快捷跳转
        {sql += " and Code not in(select top " + (PageCount * (Convert.ToInt32(DropDownList2.SelectedValue) - 1)) + " Code from Student " + tj + ")";}else{sql += " where Code not in(select top " + (PageCount * (Convert.ToInt32(DropDownList2.SelectedValue) - 1)) + " Code from Student " + tj + ")";}Repeater1.DataSource = new StudentData().Select(sql, hs);//数据指向
        Repeater1.DataBind();Label2.Text = DropDownList2.SelectedValue;}快捷跳转
快捷跳转(跳至第...页)

 

转载于:https://www.cnblogs.com/hongsen3/p/5994881.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/457086.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

node.js简单爬虫

这里假设你已经安装好node.js和npm&#xff0c;如果没有安装&#xff0c;请参阅其他教程安装。 配置首先是来配置package.json文件&#xff0c;这里使用express,request和cheerio。package.json如下&#xff1a; {"name": "node-scrape","version&quo…

Struts2入门(二)——配置拦截器

一、前言 之前便了解过&#xff0c;Struts 2的核心控制器是一个Filter过滤器&#xff0c;负责拦截所有的用户请求&#xff0c;当用户请求发送过来时&#xff0c;会去检测struts.xml是否存在这个action&#xff0c;如果存在&#xff0c;服务器便会自动帮我们跳转到指定的处理类中…

linux固态机械分区吗,不再疑惑!实测数据后才知道固态硬盘究竟要不要分区

不再疑惑&#xff01;实测数据后才知道固态硬盘究竟要不要分区2019-12-10 20:52:00162点赞594收藏177评论前几年的固态硬盘价格昂贵&#xff0c;一般用户会选择128G或256G的固态作为系统盘&#xff0c;由于单盘空间不大&#xff0c;一般都会配合机械硬盘使用&#xff0c;无需考…

安卓手机的后门控制工具SPADE

SPADE&#xff0c;一款安卓手机的后门控制工具&#xff0c;安全研究人员可以以此了解和研究安卓后门原理。 首先&#xff0c;我们从网站www.apk4fun.com下载apk文件&#xff0c;如ccleaner。然后&#xff0c;我们安装spade git clone https://github.com/suraj-root/spade.git …

MySQL案例-open too many files,MyISAM与partition

-------------------------------------------------------------------------------------------------短文---------------------------------------------------------------------------------------------------------------长话短说~现象: error log中批量刷错误日志, 形…

linux网卡有很多error,教你设置win7系统虚拟机安装linux提示network error的解决方法...

很多朋友在使用电脑的过程中&#xff0c;会发现win7系统虚拟机安装linux提示network error的现象&#xff0c;当遇到win7系统虚拟机安装linux提示network error的问题&#xff0c;我们要怎么解决呢&#xff1f;如今还有很多用户不知道如何处理win7系统虚拟机安装linux提示netwo…

linux模拟网络延迟,使用Nistnet搭建网络延迟模拟设备 (network delay simulator)

mknod /dev/hitbox c 62 0mknod /dev/nistnet c 62 1chown root /dev/hitboxchown root /dev/nistnetmknod /dev/mungebox c 63 0chown root /dev/mungeboxmknod /dev/spybox c 64 0chown root /dev/spyboxmodprobe nistnet可以将这个放到/etc/rc.local中&#xff0c;以便重启后…

将本地Blog部署到GitHub上,有自己的博客页面!

前言 上一篇文章我们已经把本地的hexo环境搭建好了&#xff0c;并且在本地成功预览&#xff0c;但是本地预览也意味着自己的博文只能自己看的到&#xff0c;其他人根本看不到&#xff0c;这篇文章将接上文说一说如何把本地Blog部署到GitHub上&#xff0c;好让小伙伴可以来访问我…

Linux下安装配置JDK

本人使用的VM虚拟机&#xff0c;在VM上安装了Linux&#xff0c;版本是CentOS-6.7-i386-bin-DVD1.iso。 一、下载JDK 在进入JDK官网&#xff0c;找到要下载的JDK版本&#xff0c;将下载地址复制下来&#xff0c;放到迅雷中下载&#xff0c;我下载的是&#xff1a;http://downloa…

新手使用GitHub客户端提交项目的步骤

1.下载https://windows.github.com/ github客户端 2.安装完github&#xff0c;会出现 点击GitHub&#xff0c;Git Shell是命令行指令&#xff0c;暂时用不上 3.点击进入之后 输入你在https://github.com上面注册的用户名和密码点击log in 4.登录之后新建项目 点击左上角…

linux的命令uname n,Linux下uname命令及其选项

Linux下uname命令及其选项2017-03-15 23:22:26晓得了Linux系统的用户信息后&#xff0c;你也可能想晓得所登录的系统信息&#xff0c;今日就绍介获取系统本身信息的命令uname,这搭u应当是UNIX的缩写&#xff0c;操作如次&#xff1a;uname使役uname还可以得到其它相关系统的信息…

火狐浏览器Firefox如何使用插件,火狐有哪些好用的插件

1 CoorPreviews 不打开网页链接预览该网页的内容。 预览如图所示&#xff1a; 点击关闭旁边的钉子可以让该窗口保持开着并且浏览速度加快。这对于快速浏览图片时非常有用。 2 FoxTab 3D方式预览网页&#xff0c;只要按一下输入框左侧按钮即可。 此外还提供多种预览模式和其…

GitHub+Hexo搭建自己的Blog之-主题配置

前言 前两章我们已经把Blog的环境全部搭建完毕了&#xff0c;但是还没有内容&#xff0c;而且hexo默认的主题是不是感觉挺丑的&#xff0c;其实hexo给我们提供了很多主题模板&#xff0c;总有一款是你喜欢的&#xff0c;本篇文章将继续说一说如何配置主题&#xff0c;怎么创建博…

开源app之MyHearts

前言 这个月&#xff0c;说实话&#xff0c;有忙有闲&#xff0c;经历了一次病痛的洗礼&#xff0c;才认识到了只有好好的生活&#xff0c;认真的对待自己的身体&#xff0c;才能更好的去工作&#xff0c;没有了身体的支撑&#xff0c;什么工作都只能是纸老虎&#xff0c;不攻自…

前端那些事之原生 js实现贪吃蛇篇

2019独角兽企业重金招聘Python工程师标准>>> 原生js实现贪吃蛇 <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><title>贪吃蛇游戏</title><style>body, div, img {margin: 0 auto;pa…

整理一些完全免费开放的API接口

前言 在开发测试阶段&#xff0c;或者是在写Demo的时候&#xff0c;难免会用到一些测试数据&#xff0c;有时苦于没有可用的接口&#xff0c;需要自己动手去写&#xff0c;但是这样大大降低了效率&#xff0c;前期我也找了一些开放的接口&#xff0c;这篇文章整理一下&#xff…

如何发现优秀的开源项目?

之前发过一系列有关 GitHub 的文章&#xff0c;有同学问了&#xff0c;GitHub 我大概了解了&#xff0c;Git 也差不多会使用了&#xff0c;但是 还是搞不清 GitHub 如何帮助我的工作&#xff0c;怎么提升我的工作效率&#xff1f; 问到点子上了&#xff0c;GitHub 其中一个最重…

自已开发完美的触摸屏网页版仿app弹窗型滚动列表选择器/日期选择器

手机端网页版app在使用下拉列表时&#xff0c;传统的下拉列表使用起来体验非常不好&#xff0c;一般做的稍好一点的交互功能界面都不会直接使用下拉列表&#xff0c;所以app的原生下拉列表都是弹窗列表选择&#xff0c;网页型app从使用体验上来当然也应该做成那样&#xff0c;前…

一个 js 中值传递和引用传递的坑。

今天在调试代码时遇到一个问题&#xff0c;刚开始想不明白&#xff0c;然后分析了一下后&#xff0c;才知道其中的问题&#xff0c;这也是一个基础的问题&#xff0c;&#xff08;所以基础是很重要的&#xff09; 代码如下&#xff1a; var a 3; a a * 2; console.log(a); //…

关于在用异步消息处理机制使用Message.Obtain()方法(而非New Message)获得一个Message对象的好处

类概述 定义一个包含任意类型的描述数据对象&#xff0c;此对象可以发送给Handler。对象包含两个额外的int字段和一个额外的对象字段&#xff0c;这样可以使得在很多情况下不用做分配工作。 尽管Message的构造器是公开的&#xff0c;但是获取Message对象的最好方法是调用Messag…