20150301—ASP.NET的Repeater
Repeater与GridView等数据列表一样,都是用来显示数据库的信息的,其中Repeater是最基本的列表形式,其用法也比较灵活。
一、Repeater的位置:
工具箱-数据-Repeater
拖拽进入页面后的显示:
切换到源视图会发现他只有两句代码:
<asp:Repeater ID="Repeater1" runat="server">
</asp:Repeater>
其他的格式等需要我们用代码来实现。
二、Repeater基本列表格式:
<asp:Repeater ID="Repeater1" runat="server">
<HeaderTemplate><!--头部列表的标签-->
<table>
<tr>
<td>地名</td>
<td>邮编</td>
<td>管理</td>
<td>删除</td>
</tr>
</HeaderTemplate>
<ItemTemplate><!--表主题内容标签—>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</ItemTemplate>
<FooterTemplate><!--表的脚部标签-->
</table>
</FooterTemplate>
</asp:Repeater>
表头需要写入<HeaderTemplate>..</HeaderTemplate>标签中,即表的第一行放在此标签中。
主要数据放在<ItemTemplate>..</ItemTemplate>标签中,即表的主要数据内容的显示,只需要一行即可,绑定数据后系统会自动生成其他的行。
表的尾部<FooterTemplate>..</FooterTemplate>标签,尾部注解等。
三、Repeater的数据绑定。
需要先在HTML的页面中指定绑定的表的列名
(还需要创建LINQ to SQL的类,来连接数据库,附数据库表图,只需要类似的表即可)
使用<%#Eval("列名") %>,格式如下(这里只绑定了两个列):
<ItemTemplate>
<tr>
<td><%#Eval("Name") %></td>
<td><%#Eval("PostCode") %></td>
<td></td>
<td></td>
</tr>
</ItemTemplate>
成功绑定后在设计视图中的显示:
cs中的代码:
private DiquDataContext diqu;//外部定义LINQ方便使用
protected void Page_Load(object sender, EventArgs e)
{
diqu = new DiquDataContext();//初始化LINQ
if (!IsPostBack)//第一次加载时
{
BindData();
}
}
//创建了一个数据绑定的方法以方便使用
public void BindData()
{
//按条件查询数据
var que = from m in diqu.Members where m.ParentId.ToString().Length == select m;//按字符个数确定省级地区
//绑定数据
Repeater1.DataSource = que;
Repeater1.DataBind();
}
绑定完成:
四、Repeater的编辑和删除按钮
注意:由于无法获取到已显示的repeater的值,所以我们需要在点击上一级或下一级时使用一个Label标签来记录它点击的是哪一行,然后只需要将Label隐藏即可。
在表格中相应的位置添加LinkButton控件,然后给控件设置 CommandName(为控件设置名字) CommandArgument(绑定数据,索引)
<ItemTemplate>
<tr>
<td><%#Eval("Name") %></td>
<td><%#Eval("PostCode") %></td>
<td>
<asp:LinkButton ID="LinkButton_guanli" CommandArgument='<%#Eval("ParentId") %>' CommandName="xiaji" runat="server">下级管理</asp:LinkButton>
</td>
<td>
<asp:LinkButton ID="LinkButton_shanchu" CommandArgument='<%#Eval("ParentId") OnClientClick='return confirm("确定删除吗?")' %>' CommandName="shanchu" runat="server">删除</asp:LinkButton>
</td>
</tr>
</ItemTemplate>
在Repeater控件的属性--事件—ItemCommand(单击Repeater任意按钮时触发),双击自动生成事件
cs中的代码:
protected void Repeater1_ItemCommand(object source, RepeaterCommandEventArgs e)
{
//删除
if (e.CommandName == "shanchu")//如果点击的是删除按钮
{//表中ParentId列的数据类型是int
int code = int.Parse(e.CommandArgument.ToString());
Members cdata = diqu.Members.Single(r => r.ParentId == code);
diqu.Members.DeleteOnSubmit(cdata);
diqu.SubmitChanges();
binddata();
}
//展示下级
if (e.CommandName == "xiaji")
{
int cou = e.CommandArgument.ToString().Length;//获取字符串长度,以判断省市地区的级别
if (cou == )//省或者直辖市为两位数
{
Repeater1.DataSource = null;//清空数据
string code = e.CommandArgument.ToString();
//按照字符长度并截取字符串进行匹配(搜索的位置是 市)
var xia = from m in diqu.Members where m.ParentId.ToString().Length == where m.ParentId.ToString().Substring(, ) == code select m;
Repeater1.DataSource = xia;
Repeater1.DataBind();
}
if (cou == )//市 为4位数
{
Repeater1.DataSource = null;//清空数据
string code = e.CommandArgument.ToString();
//按照字符长度并截取字符串进行匹配(搜索的位置是 地区)
var xia = from m in diqu.Members where m.ParentId.ToString().Length == where m.ParentId.ToString().Substring(, ) == code select m;
Repeater1.DataSource = xia;
Repeater1.DataBind();
}
if (cou == )//地区 为6位数,最小级别
{
//弹出提示信息
Response.Write("<script>alert('已到最小级别!');</script>");
}
}
}
20150301—ASP.NET的Repeater的更多相关文章
- asp.net中Repeater控件用法笔记
大家可能都对datagrid比较熟悉,但是如果在数据量大的时候,我们就得考虑使用 repeater作为我们的数据绑定控件了.Repeater控件与DataGrid (以及DataList)控件的主要区 ...
- asp控件Repeater运用
双层repeater嵌套 <asp:Repeater ID="rpt_dataRepeatgroup" runat="server" OnItemData ...
- Asp.Net:Repeater 详情 备用
页面 repeator就想for循环一样,没有编辑模板,有删除delete和详情detail模板 <%@ Page Language="C#" AutoEventWireup ...
- ASP.NET(C#)--Repeater中生成“序号”列
需求介绍:在Repeater(Table)中加入“序号”列,从1开始自增,步长为1. 思路:因为“序号”跟Repeater的行号有关,所以要在Repeater的ItemDataBound事件中输出“序 ...
- asp.net:repeater嵌套(常用于新闻等在首页归类显示)
using System;using System.Configuration;using System.Collections.Generic;using System.Linq;using Sys ...
- asp.net关于Repeater控件中的全选,批量操作
今天在Repeater控件中碰到一个全选的操作,于是上网查了一下,找到一个觉得比较好,便记录下来, 界面代码简化之后(全选操作): <script type="text/javascr ...
- asp.net 将repeater上数据导出到excel
1,首先得到一个DataTable public DataTable GetTable(string sql) { SqlConnnection con=new SqlConnection(Confi ...
- asp.net中Repeater结合js实现checkbox的全选/全不选
前台界面代码: <input name="CheckAll" type="checkbox" id="CheckAll" value= ...
- 自己写的一个ASP.NET服务器控件Repeater和GridView分页类
不墨迹,直接上代码 using System; using System.Collections.Generic; using System.Linq; using System.Text; usin ...
随机推荐
- [程序猿入行必备]CSS样式之优先级
专业玩家请移步:http://www.w3.org/TR/CSS2/cascade.html 使用CSS控制页面样式时,常常出现设定的样式被"覆盖",不能生效的情况. 浏览器是根据 ...
- ComboBox控件
一.怎样加入�/删除Combo Box内容1,在Combo Box控件属性的Data标签里面加入�,一行表示Combo Box下拉列表中的一行.换行用ctrl+回车.2,在程序初始化时动态加入� ...
- javascript 事件相关
1.添加事件 >基本注册方式 <button id="info">click me!</button> var span = document.get ...
- XCODE4.6从零开始添加视图
转自:http://www.cnblogs.com/luoxs/archive/2012/09/23/2698995.html 对于很多初学者来说,肯定希望自己尝试不用傻瓜的“Single View ...
- C#“同步调用”、“异步调用”、“异步回调”
本文将主要通过“同步调用”.“异步调用”.“异步回调”三个示例来讲解在用委托执行同一个“加法类”的时候的的区别和利弊. 首先,通过代码定义一个委托和下面三个示例将要调用的方法: ); //模拟该方法运 ...
- C# 网络通信大小端转换类
本篇文章主要介绍了"C# 网络通信大小端转换类" using System;namespace Framework.NetPackage.Common { /// <summ ...
- QT 操作oracle数据库遇到的问题
一.首先参考官方文档: http://qt-project.org/doc/qt-4.8/sql-driver.html#qoci 二.编译驱动: http://www.tuicool.com/art ...
- 向linux内核版本号添加字符/为何有时会自动添加“+”号
转载:http://blog.csdn.net/adaptiver/article/details/7225980 1. 引子 编译2.6.35.7 kernel版本的时候发现,“2.6.35.7 ...
- 小白日记44:kali渗透测试之Web渗透-SqlMap自动注入(二)-sqlmap参数详解REQUEST
Sqlmap自动注入(二) Request ################################################### #inurl:.php?id= 1. 数据段:--d ...
- 1.5.5 Tokenizers
Tokenizers <fieldType name="text" class="solr.TextField"> <analyzer typ ...