1.页面代码

如果要分页,那么页面开头必须写(<%@ Register Src="~/Controls/Page.ascx" TagName="Page" TagPrefix="uc1" %>)

并且分页,页脚<uc1:Page ID="Page2" runat="server" /> 前面的uc1要跟上面的TagPrefix值一样

<table class="table" id="gv">
<%--头标--%>
<thead>
    <tr>
        <td width="50px" class="auto-style1">
            <asp:LinkButton ID="LinkButton1" runat="server" OnClick="DeleteByChk"  OnClientClick="javascript:return checkValues('您确定要批量删除数据吗?')">删除</asp:LinkButton>
            <input type="checkbox" name="ckb" class="checkall"/>
        </td>
        <td width="50px" class="auto-style1"><span style="margin-left:20px;">序</span></td>
        <td width="100px" class="auto-style1">制单日期</td>
        <td width="50px" class="auto-style1">订单状态</td>
        <td width="250px" class="auto-style1">任务名称</td>
        <td width="50px" class="auto-style1">销售编号</td>
        <td width="50px" class="auto-style1">合同编号</td>
        <td width="50px" class="auto-style1">客户名称</td>
        <td width="50px" class="auto-style1">联系人</td>
        <td width="50px" class="auto-style1">联系电话</td>
        <td width="50px" class="auto-style1">管理</td>
    </tr>
</thead>
<%--数据的绑定--%>
<asp:Repeater runat="server" ID="rpt">
    <ItemTemplate>
        <tr>
            <td><input runat="server" id="chk" type="checkbox" value='<%#Eval("SId")%>' class="checkdelete"/></td>
            <td><span style="margin-left:20px;"><%# Container.ItemIndex+1 %></span></td>
            <td><span style="margin-left:25px;"><%#Eval("SOperDate")%></span></td>
            <td><span style="margin-left:25px;"><%#Eval("SIsLock")%></span></td>
            <td><span style="margin-left:25px;"><%#Eval("SName")%></span></td>
            <td><span style="margin-left:25px;"><%#Eval("SCode")%></span></td>
            <td><span style="margin-left:25px;"><%#Eval("SConNo")%></span></td>
            <td><span style="margin-left:25px;"><%#Eval("SComId")%></span></td>
            <td><span style="margin-left:25px;"><%#Eval("SLinkMan")%></span></td>
            <td><span style="margin-left:25px;"><%#Eval("STell")%></span></td>
            <td class="manage">
                <a href="TaskInterManage.aspx?SId=<%#Eval("SId") %>" class="show">编辑</a>
                <asp:LinkButton runat="server" ID="lb_del" class="delete"  title="你确定要删除这一项吗?" OnClick="Delete" >删除</asp:LinkButton>
            </td>
        </tr>
    </ItemTemplate>
</asp:Repeater>
</table>
<%--分页,页脚--%>
<table class="table">
<tr>
    <td class="page">
    <span style="float:left;" id="num" runat="server"></span>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<uc1:Page ID="Page2" runat="server" />&nbsp;&nbsp;&nbsp;&nbsp;</td>
</tr>
</table>

2.数据的展示

private void show()
{
DataTable dt = System_Project_TasksBLL.GetList("");
//分页
int pageNumber = ;//页数
int pageSize = ;//每一页显示数 //判断是否需要分页
if (!string.IsNullOrEmpty(Request.QueryString["page"]))
pageNumber = Convert.ToInt32(Request.QueryString["page"]);
       
       //把datatable类型的数据转换为list集合类型的数据
List<System_Project_Tasks> list = new List<System_Project_Tasks>();
foreach (DataRow item in dt.Rows)
{
System_Project_Tasks data = new System_Project_Tasks();
data.SId = Convert.ToInt32(item["SId"].ToString());
data.SOperDate = Convert.ToDateTime(item["SOperDate"].ToString());
data.SIsLock = int.Parse(item["SIsLock"].ToString());
data.SName = item["SName"].ToString();
data.SCode = item["SCode"].ToString();
data.SConNo = item["SConNo"].ToString();
data.SComId = item["SComId"].ToString();
data.SLinkMan = item["SLinkMan"].ToString();
data.STell = item["STell"].ToString();
list.Add(data);
}
       //筛选要显示的数据
PagedDataSource pageDataSource = new PagedDataSource()
{
DataSource = list,//数据源
AllowPaging = true,//是否开启分页
PageSize = pageSize,//每一页显示数
CurrentPageIndex = pageNumber,//开始页的位置
};
       //下脚的分页菜单的制作,pageNumber:当前页面的页数 pageDataSource.PageCount:获取数据一共有多少页
this.Page2.sty("meneame", pageNumber, pageDataSource.PageCount, "?page=");
//赋值
this.num.InnerHtml = string.Concat("当前总计 - <span style='color:#ff0000; font-weight:bold;'>",dt.Rows.Count , "</span>条-数据");
this.rpt.DataSource = pageDataSource;
this.rpt.DataBind();
}

3.对控件的一些基本操作

protected void Delete(object sender, EventArgs e)
{
//查找此控件的上一个层级
RepeaterItem parent = (sender as LinkButton).Parent as RepeaterItem;
//在此层级下面查找控件(并不是找此层级的子集)
HtmlInputCheckBox htmlInputCheckBox = parent.FindControl("chk") as HtmlInputCheckBox;
//获取chekbox的value值(id)
int num = Convert.ToInt32(htmlInputCheckBox.Value);
//删除
if (bll.Delete(num))
{
string str = HttpContext.Current.Server.HtmlEncode("您好!工程测试单删除成功!");
Response.Redirect(string.Concat("/InfoTip/Operate_Success.aspx?returnpage=", base.Request.Url.AbsoluteUri, "&tip=", str));
}
} protected void DeleteByChk(object sender, EventArgs e)
{
//遍历Repeater每一行数据
foreach (RepeaterItem item in this.rpt.Items)
{
//获取每一行数据中的id叫chk的控件
HtmlInputCheckBox htmlInputCheckBox = item.FindControl("chk") as HtmlInputCheckBox;
//判断此行数据的checkbox有没有勾选上
if (!htmlInputCheckBox.Checked)
{
//如果没有,那么跳过此次循环
continue;
}
//获取id
int num = Convert.ToInt32(htmlInputCheckBox.Value);
//调用bll层方法删除
bll.Delete(num);
}
string str = HttpContext.Current.Server.HtmlEncode("您好!邮件已彻底删除!");
base.Response.Redirect(string.Concat("/InfoTip/Operate_Success.aspx?returnpage=", base.Request.Url.AbsoluteUri, "&tip=", str));
}

4.页面的展示

Repeater的使用的更多相关文章

  1. C# 在Repeater 的ItemDataBound 如何转换e.Item.DataItem 的类型

    1.使用DataSet和DataTable绑定数据源时,用 DataRowView view = (DataRowView)e.Item.DataItem; 2.DataReader绑定数据源时,用 ...

  2. Webform(七)——内置对象(Session、Application)和Repeater的Command操作

    内置对象:用于页面之间的数据交互 为什么要使用这么内置对象?因为HTTP的无状态性. 一.内置对象 (一)Session 跟Cookies一样用来存储用户数据 1.Session.Cookies对比 ...

  3. Webform(五)——内置对象(Response、Request)和Repeater中的数据增删改

    一.内置对象 (一)Response对象 1.简介:response 对象在ASP中负责将信息传递给用户.Response对象用于动态响应客户端请求,并将动态生成的响应结果返回到客户端浏览器中,使用R ...

  4. webform Repeater重复器、地址栏传值、Response

    Repeater: 重复器 <HeaderTemplate></HeaderTemplate> - 头模板:在循环开始时,其内容只会打印一遍 <ItemTemplate& ...

  5. Repeater、地址栏传值、Response--2016年12月30日

    Repeater  Repeater支持以下5种模板       ● ItemTemplate : 对每一个数据项进行格式设置 [Formats each item from the data sou ...

  6. C#中用radio单选Repeater循环数据,js实现

    <asp:Repeater ID="rpt" runat="server"> <ItemTemplate> <tr data-id ...

  7. asp:Repeater实例备忘

    1.前置部分 <asp:Repeater ID="rptPlanNo" runat="server" OnItemDataBound="rptP ...

  8. webform Repeater、地址栏传值、Response

    Repeater: 重复器 Repeater中有五个模板,这里需要注意的是4个 <HeaderTemplate> - 开头,只执行一次的内容 <ItemTemplate> - ...

  9. ASP.NET中获取Repeater模板列中LinkButton按钮事件中获取ID等

    前台页面中: <asp:Repeater ID="repComment" runat="server">            <ItemTe ...

  10. Repeater的分页

      Repeater控件是个好东西.轻量级.又好用.完全的自定义.但是,正是因为这些优点它没有自动分页的功能.这个需要研究一下.我看了一下起点等小说网站,那些什么推荐排名榜用Repeater控件那是很 ...

随机推荐

  1. threeJS射线拾取机制及案例

    前言 在浏览器中浏览三维图形的时候,有时想要与三维图形之间做一些点击事件和交互操作,其中比较常用的一个解决方案就是使用Raycaster对象来实现(射线拾取). 基础知识 世界坐标系:webGL中,世 ...

  2. 【leetcode】659. Split Array into Consecutive Subsequences

    题目如下: 解题思路:本题可以维护三个字典,dic_1保存没有组成序列的单元素,dic_2保存组成了包含两个元素的序列中的较大的元素,dic_3保存组成了包括三个或者三个以上元素的序列中的最大值.因为 ...

  3. Angular JS - 2 - angularjs helloworld

    材料下载  https://github.com/liuch0228/AngularJS-learn.git 1.使用原生jquery实现 实现输入框内容 在页面上跟随输入值动态更新 项目路径 < ...

  4. PHP curl_multi_exec函数

    curl_multi_exec — 运行当前 cURL 句柄的子连接 说明 int curl_multi_exec ( resource $mh , int &$still_running ) ...

  5. window安装nodejs

    nvm管理nodejs 原文: https://www.cnblogs.com/shimily/articles/7244058.html1.下载nvm(nodejs版本管理工具) https://g ...

  6. 2018-2019-2 20175120 实验四《Android程序设计》实验报告

    任务一:Android Studio的安装测试 任务要求:参考<Java和Android开发学习指南(第二版)(EPUBIT,Java for Android 2nd)>第二十四章: 参考 ...

  7. 广播接收者实现IP拨号

    广播接收者实现IP拨号 效果图: 实现的功能就是自动监听我们要拨打的号码,在我们拨打的号码前加上179521 分析: 1.敲个类来继承广播接收者 并且将从打电话应用位置获取的号码加上179521,并将 ...

  8. .net core linux的守护进程 supervisor

    这个介绍的很全面,对初学者来说可以有更好的认识: https://www.cnblogs.com/savorboard/p/dotnetcore-supervisor.html

  9. vim中 E212:无法打开并写入文件 的解决办法

    因为centos7刚安装的时候是无法上网的,所以,需要去配置一下ifcfg-ens33文件,但实际上这个文件是只读的文件,root也无法去更改内容,这时候保存的时候需要使用 w ! sudo tee ...

  10. mybatis关联查询之一对一查询

    一对一也就是 A 表的一条记录对应 B 表的一条记录,下面的测试数据中,从employee 表来看,一个员工对应一个部门,是一对一关系,如果从部门角度来看,则是一对多的关系,一个部门对应多个员工,本节 ...