petshop4学习_重构DataList实现分页

掌握要点: <IList>,DataGrid翻页事件...
详细代码如下,慢慢体会..
None.gifusing System;
None.gif
using System.Collections;
None.gif
using System.Collections.Specialized;
None.gif
using System.Text;
None.gif
using System.Text.RegularExpressions;
None.gif
using System.Web.UI;
None.gif
using System.Web.UI.WebControls;
None.gif
None.gif
namespace CustomControl
ExpandedBlockStart.gifContractedBlock.gif
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// CustomList 的摘要说明
InBlock.gif    
/// 重构DataList控件
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    public class CustomList : DataList
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        
//静态常量
InBlock.gif
        protected const string HTML1 = "<table width=100% cellpadding=0 cellspacing=0><tbody><tr><td>";
InBlock.gif        
protected const string HTML2 = "</td></tr><tr><td align=right>";
InBlock.gif        
//protected const string HTML3 = "</td><td align=center class=paging>";
InBlock.gif
InBlock.gif        
//protected const string HTML5 = "</td><td align=right class=paging>";
InBlock.gif

InBlock.gif        
protected const string HTML4 = "</td></tr></tbody></table>";
InBlock.gif
InBlock.gif        
private static readonly Regex RX = new Regex(@"^&page=\d+", RegexOptions.Compiled);
InBlock.gif        
private const string LINK_PREV = "<a href=?page={0}>前一页</a>";
InBlock.gif        
private const string LINK_MORE = "<a href=?page={0}>下一页</a>";
InBlock.gif        
private const string LINK_FIRST = "<a href=?page={0}>首页</a>";     //首页
InBlock.gif
        private const string LINK_LAST = "<a href=?page={0}>尾页</a>";      //尾页
InBlock.gif
        private const string KEY_PAGE = "page";
InBlock.gif        
private const string COMMA = "?";
InBlock.gif        
private const string AMP = "&";
InBlock.gif
InBlock.gif        
protected string emptyText;
InBlock.gif        
private IList dataSource;       //数据源
InBlock.gif
        private int pageSize = 10;      //每页大小
InBlock.gif
        private int currentPageIndex;   //当前页
InBlock.gif
        private int itemCount;          //数据条目总数
InBlock.gif

ExpandedSubBlockStart.gifContractedSubBlock.gif        
/**//// <summary>
InBlock.gif        
/// 指定要绑定的数据源
ExpandedSubBlockEnd.gif        
/// </summary>

InBlock.gif        override public object DataSource
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
set
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                
//This try catch block is to avoid issues with the VS.NET designer
InBlock.gif                
//The designer will try and bind a datasource which does not derive from ILIST
InBlock.gif
                try
ExpandedSubBlockStart.gifContractedSubBlock.gif                
dot.gif{
InBlock.gif                    dataSource 
= (IList)value;
InBlock.gif                    ItemCount 
= dataSource.Count;
ExpandedSubBlockEnd.gif                }

InBlock.gif                
catch
ExpandedSubBlockStart.gifContractedSubBlock.gif                
dot.gif{
InBlock.gif                    dataSource 
= null;
InBlock.gif                    ItemCount 
= 0;
ExpandedSubBlockEnd.gif                }

ExpandedSubBlockEnd.gif            }

ExpandedSubBlockEnd.gif        }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif        
/**//// <summary>
InBlock.gif        
/// 每页大小
ExpandedSubBlockEnd.gif        
/// </summary>

InBlock.gif        public int PageSize
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif            
get dot.gifreturn pageSize; }
ExpandedSubBlockStart.gifContractedSubBlock.gif            
set dot.gif{ pageSize = value; }
ExpandedSubBlockEnd.gif        }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif        
/**//// <summary>
InBlock.gif        
/// 总页数
ExpandedSubBlockEnd.gif        
/// </summary>

InBlock.gif        protected int PageCount
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif            
get dot.gifreturn (ItemCount - 1/ pageSize; }
ExpandedSubBlockEnd.gif        }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif        
/**//// <summary>
InBlock.gif        
/// 可重载,数据条目总数
ExpandedSubBlockEnd.gif        
/// </summary>

InBlock.gif        virtual protected int ItemCount
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif            
get dot.gifreturn itemCount; }
ExpandedSubBlockStart.gifContractedSubBlock.gif            
set dot.gif{ itemCount = value; }
ExpandedSubBlockEnd.gif        }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif        
/**//// <summary>
InBlock.gif        
/// 可重载,当前页码
ExpandedSubBlockEnd.gif        
/// </summary>

InBlock.gif        virtual public int CurrentPageIndex
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif            
get dot.gifreturn currentPageIndex; }
ExpandedSubBlockStart.gifContractedSubBlock.gif            
set dot.gif{ currentPageIndex = value; }
ExpandedSubBlockEnd.gif        }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif        
/**//// <summary>
InBlock.gif        
/// 空Text
ExpandedSubBlockEnd.gif        
/// </summary>

InBlock.gif        public string EmptyText
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif            
set dot.gif{ emptyText = value; }
ExpandedSubBlockEnd.gif        }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif        
/**//// <summary>
InBlock.gif        
/// 设置页面,翻页事件
InBlock.gif        
/// </summary>
ExpandedSubBlockEnd.gif        
/// <param name="index"></param>

InBlock.gif        public void SetPage(int index)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            OnPageIndexChanged(
new DataGridPageChangedEventArgs(null, index));
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
override protected void OnLoad(EventArgs e)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
if (Visible)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                
string page = Context.Request[KEY_PAGE];
InBlock.gif                
int index = (page != null? int.Parse(page) : 0;
InBlock.gif                SetPage(index);
ExpandedSubBlockEnd.gif            }

ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif        
/**//// <summary>
InBlock.gif        
/// Overriden method to control how the page is rendered
InBlock.gif        
/// Render提交写入
InBlock.gif        
/// </summary>
ExpandedSubBlockEnd.gif        
/// <param name="writer"></param>

InBlock.gif        override protected void Render(HtmlTextWriter writer)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif
InBlock.gif            
//Check there is some data attached
InBlock.gif
            if (ItemCount == 0)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                writer.Write(emptyText);
InBlock.gif                
return;
ExpandedSubBlockEnd.gif            }

InBlock.gif
InBlock.gif            
//Mask the query "?"/"&"二个符号
InBlock.gif
            string query = Context.Request.Url.Query.Replace(COMMA, AMP);
InBlock.gif            
//正则表达式替换
InBlock.gif
            query = RX.Replace(query, string.Empty);
InBlock.gif
InBlock.gif
InBlock.gif            
// Write out the first part of the control, the table header
InBlock.gif
            writer.Write(HTML1);
InBlock.gif
InBlock.gif            
// Call the inherited method
InBlock.gif
            base.Render(writer);
InBlock.gif
InBlock.gif            
// Write out a table row closure
InBlock.gif
            writer.Write(HTML2);
InBlock.gif
InBlock.gif            
if (currentPageIndex > 0)
InBlock.gif            writer.Write(
string.Format(LINK_FIRST, 0 + query) + "&nbsp;");     //首页
InBlock.gif            
//Determin whether next and previous buttons are required
InBlock.gif            
//Previous button?
InBlock.gif
            if (currentPageIndex > 0)
InBlock.gif                writer.Write(
string.Format(LINK_PREV, (currentPageIndex - 1+ query));
InBlock.gif
InBlock.gif            
//Close the table data tag
InBlock.gif            
//writer.Write(HTML3);
InBlock.gif
InBlock.gif            
//当前页/总页数
InBlock.gif
            writer.Write("&nbsp;&nbsp;" + string.Format("页码:{0}/{1}", currentPageIndex + 1, PageCount + 1+ "&nbsp;&nbsp;");
InBlock.gif
InBlock.gif            
//writer.Write(HTML5);
InBlock.gif
InBlock.gif            
//Next button?
InBlock.gif
            if (currentPageIndex < PageCount)
InBlock.gif                writer.Write(
string.Format(LINK_MORE, (currentPageIndex + 1+ query));
InBlock.gif            
if (currentPageIndex < PageCount)
InBlock.gif            writer.Write(
"&nbsp;" + string.Format(LINK_LAST, PageCount + query));      //尾页
InBlock.gif
InBlock.gif            
//Close the table
InBlock.gif
            writer.Write(HTML4);
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
override protected void OnDataBinding(EventArgs e)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif
InBlock.gif            
//Work out which items we want to render to the page
InBlock.gif
            int start = CurrentPageIndex * pageSize;
InBlock.gif            
int size = Math.Min(pageSize, ItemCount - start);
InBlock.gif
InBlock.gif            IList page 
= new ArrayList();
InBlock.gif
InBlock.gif            
//Add the relevant items from the datasource
InBlock.gif
            for (int i = 0; i < size; i++)
InBlock.gif                page.Add(dataSource[start 
+ i]);
InBlock.gif
InBlock.gif            
//set the base objects datasource
InBlock.gif
            base.DataSource = page;
InBlock.gif            
base.OnDataBinding(e);
InBlock.gif
ExpandedSubBlockEnd.gif        }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif        
/**//// <summary>
InBlock.gif        
/// 翻页事件
ExpandedSubBlockEnd.gif        
/// </summary>

InBlock.gif        public event DataGridPageChangedEventHandler PageIndexChanged;
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif        
/**//// <summary>
InBlock.gif        
/// 可重载,翻页事件处理
InBlock.gif        
/// </summary>
ExpandedSubBlockEnd.gif        
/// <param name="e"></param>

InBlock.gif        virtual protected void OnPageIndexChanged(DataGridPageChangedEventArgs e)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
if (PageIndexChanged != null)
InBlock.gif                PageIndexChanged(
this, e);
ExpandedSubBlockEnd.gif        }

ExpandedSubBlockEnd.gif    }

ExpandedBlockEnd.gif}

转载于:https://www.cnblogs.com/sjett/archive/2006/06/20/430834.html

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

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

相关文章

如何与Java 8,NetBeans Platform 8,Jenkins,Jacoco和Sonar进行持续集成

介绍 Java 8出现了&#xff0c;人们所期待的革命终于发布了&#xff0c;我敢肯定&#xff0c;你们中的许多人都在想着同样的问题“我应该在项目中使用它吗&#xff1f;”。 好吧&#xff0c;几个月来我遇到了同样的问题&#xff0c;今天我有一个答案想与大家分享。 很多方面都…

mysql max datetime_MYSQL在联接语句中选择MAX日期

我正在尝试返回记录编号的历史位置我所拥有的是&#xff1a;SELECT l.location, t.transaction_id, t.date_modifiedFROM transactions as tINNER JOIN (SELECTt1.received_id, t1.transaction_id, t1.date_modifiedFROM (SELECT received_id, MAX(date_modified) as maxmodify…

pxe远程装机

1&#xff1a;主机 yum install dhcp vim /etc/dhcp/dhcpd.conf allow booting;      allow bootp;      ddns-update-style interim;      ignore client-updates;      subnet 192.168.10.0 netmask 255.255.255.0 {      option subnet-mask …

模板引擎

模板引擎是用来渲染页面的。页面中一部分内容是根据程序生成的&#xff0c;会变化的。 主流的模板引擎有两种&#xff1a; * jade 破坏式的、强依赖的 用了它就不能用html。 * ejs 非侵入式的、比较温和。 并不破坏原有的html 、 css(其实是往里面加入东西。) jade 根据…

Learning ROS: rqt_console和rqt_logger_level使用

rqt_console&#xff1a;操作、查看log信息 rqt_logger_level&#xff1a;设置log等级 打开node&#xff1a; rosrun rqt_console rqt_console rosrun rqt_logger_level rqt_logger_level rosrun turtlesim turtlesim_node rosrun turtlesim turtle_teleop_key 在rqt_logger_le…

WSS学习(一)---简单部署图

研究了一段时间的WSS&#xff0c;终于找到点头绪了今天把这段时间的思路整理了一下&#xff0c;结果发现就是这么一张图也不知道研究的对不对&#xff0c;有高手发现不对的给点指点有也在研究的大家一起讨论一下简单说明&#xff1a;数据库用SQL2005&#xff0c;报表用SQL2005的…

Wildfly 8.0通过其JAXRS 2.0实现提供了无缝的JSON支持。

很高兴看到Wildfly 8.0使得使用同一组JAXB类中的XML和JSON表示 两者变得更加容易&#xff0c;而无需任何额外的检查或配置不同的JAXB运行时实现。 您需要做的就是 只需从JAXRS资源类中的业务方法中返回JAXB对象 将HTTP Accept标头设置为application / json 返回JAXB类的简单…

mysql order by int_mysql order by是怎么工作的?

假设我们要查询一个市民表中城市杭州的所有人的名字&#xff0c;并且按照名字排序CREATE TABLE t (id int(11) NOT NULL,city varchar(16) NOT NULL,name varchar(16) NOT NULL,age int(11) NOT NULL,addr varchar(128) DEFAULT NULL,PRIMARY KEY (id),KEY city (city)) ENGINE…

URL模块之parse方法

url.parse(urlString , boolean , boolean) parse这个方法可以将一个url的字符串解析并返回一个url的对象。 参数&#xff1a; urlString指传入一个url地址的字符串第二个参数&#xff08;可省&#xff09;传入一个布尔值&#xff0c;默认为false&#xff0c;为true时&#x…

git使用学习笔记

## 关于Git Workspace&#xff1a;工作区 Index / Stage&#xff1a;暂存区 Repository&#xff1a;仓库区&#xff08;或本地仓库&#xff09; Remote&#xff1a;远程仓库##一、新建代码库# 在当前目录新建一个Git代码库$ git init # 新建一个目录&#xff0c;将其初始化为Gi…

over(partition by)开窗函数的使用

开窗函数是分析函数中的一种&#xff0c;开窗函数与聚合函数的区别是&#xff1a;开窗函数是用于计算基于组的某种聚合值且每个的组的聚合计算结果可以有多行&#xff0c;而聚合函数每个组的聚合计算结果只有一个。使用开窗函数可以在没有group by语句的情况下计算聚合值并将结…

发配边疆

这次要去清朝发家的地方&#xff0c;宣统皇帝待过的长春城一去&#xff0c;怕要2个年头才能回来了&#xff01;朋友们临行前给我发了许多有趣的东东感觉颇深&#xff0c;明天发上来纪念下。有帮朋友的感觉真的很好啊&#xff01;今天和女友通电话了&#xff0c;忽然有了从前的那…

在Java EE 7和WildFly中使用Bean验证来验证JAX-RS资源数据

我过去已经两次接触过这个主题。 首先&#xff0c;在我的文章《 在Java EE 6中将Bean验证与JAX-RS集成》中 &#xff0c;介绍了甚至在Java EE平台规范中未定义之前&#xff0c;如何在JBoss AS 7中将Bean验证与JAX-RS结合使用的方法。 后来&#xff0c;在一篇为《 JAX Magazine …

EventUtil.addHandler方法

EventUtil.addHandler&#xff1a;addHandler 方法&#xff0c;职责是分别视情况而定来使用DOM0级方法、DOM2级方法或IE方法来添加事件。 这个方法属于一个名字叫EventUtil的对象&#xff0c;可以使用这个对象来处理浏览器间的差异。     addHandler() 方法…

Linux scp 指令

scp指令可从远程服务器下载文件或上传文件至远程服务器(适用于: mac没安装ftp软件临时使用) 上传: scp 本地文件路径 rootIP:远程路径 例: scp /Users/xxx/Downloads/email.png rootxxx.xxx.xxx.xx:/root/img 下载:scp rootxxx.xxx.xxx.xx:/root/img/email.png /Users/xxx/Down…

mysql游标遍历数据库_MySQL数据库中,使用游标循环遍历_MySQL

/*对*dt库下的所有数据表删除docuemttype为空和documenttype为MD,PD,ET的数据&#xff1a;delete from 表名 where length(documenttype)<2 or documenttype is null or documenttype in (et,md,pd);*/DELIMITER $$USE 数据库名称1$$DROP PROCEDURE IF EXISTS 存储过程名称1…

RN启动报错,环境相关问题

启动RN的时候刚开始报错&#xff1a; The request was denied by service delegate (SBMainWorkspace) for reason: Security ("Entitlement "com.apple.frontboard.debugapplications" required to launch applications for debugging"). 查询网络上的解决…

在Spring MVC Web应用程序中添加社交登录:集成测试

我已经写了关于为使用Spring Social 1.1.0的应用程序编写单元测试的挑战&#xff0c;并为此提供了一种解决方案 。 尽管单元测试很有价值&#xff0c;但是它并不能真正告诉我们我们的应用程序是否正常运行。 这就是为什么我们必须为此编写集成测试的原因 。 这篇博客文章可以…

js基本包装类型和引用类型

回顾 1.什么是基本类型&#xff1f; 共5个。boolean,string,number,null,undefined. 2.什么是引用类型&#xff1f; 引用类型的值是对象&#xff0c;保存在堆内存中&#xff1b; 引用类型的变量实际上是一个指针&#xff0c;它保存在栈中&#xff0c;指向堆内存中的对象&am…

mysql数据库套件_MySQL数据库管理开发套件(EMS SQL Management Studio For MySQL)下载 v1.3.0.46170 官方版 - 比克尔下载...

EMS SQL Management Studio For MySQL是一个强大的MySQL数据库管理和开发套件&#xff0c;由很多工具组成&#xff0c;涉及MySQL数据库管理、导入、导出、迁移、测试、备份、比较、同步等数据库管理和开发中需要的绝大部分功能&#xff0c;为开发人员提供了一个MySQL数据库管理…