问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

使用嵌套的Repeater控件显示分级数据

发布网友 发布时间:2023-05-19 00:06

我来回答

1个回答

热心网友 时间:2023-10-12 21:58

  一 简介

  本文描述如何使用嵌套的Repeater 控件来显示分级数据 当然了 你也可以将这一技术应用到其他的列表绑定控件上去 比如DataGrid包含DataGrid DataList包含DataList等等的组合

  二 绑定到父表

   添加一个新的Web Form 到应用程序项目中 名称为Nestedrepeater aspx    从工具箱托动一个Repeater 控件到这个页面上 设定其ID 属性为 parent    切换到HTML 视图    选中下列<itemtemplate> 代码 复制到Repeater 控件对应的位置 注意 粘贴的时候请使用 粘贴为 功能 这些语句包含了数据绑定语法 很简单

<itemtemplate><b><%# DataBinder Eval(Container DataItem au_id ) %></b><br></itemtemplate>

   打开Nestedrepeater aspx cs 这个代码分离文件 降下列代码添加到Page_Load 事件中 其作用是建立一个到 Pubs (这个数据库是sql server的演示数据库 另外在安装 net framework sdk的时候也会安装这个数据库)数据库的连接 并绑定Authors 表到Repeater 控件

public void Page_Load(){ SqlConnection cnn = new SqlConnection( server=(local);database=pubs;uid=sa;pwd=; ); SqlDataAdapter cmd = new SqlDataAdapter( select * from authors cnn);  DataSet ds = new DataSet();  cmd Fill(ds authors );

  //这里将要插入子表的数据绑定

  parent DataSource = ds Tables[ authors ];  Page DataBind(); cnn Close();} 

   在文件的头部添加下面的名称空间   using System Data SqlClient;   根据你自己的情况修改一下连接字符串    保存并编译应用程序    在浏览器中打开这个页面 输出结果类似于下面的格式

 

  三 绑定到子表

   在页面的HTML视图中 添加下列代码 其目的是增加子Repeater 控件到父Repeater的项目模板中 形成嵌套

<asp:repeater id= child runat= server ><itemtemplate><%# DataBinder Eval(Container DataItem [\ title_id\ ] ) %><br></itemtemplate></asp:repeater>

   设置子Repeater 控件的DataSource 属性:

<asp:repeater datasource= <%# ((DataRowView)Container DataItem) Row GetChildRows( myrelation ) %> >

   在页面顶部添加下列指令(请注意 是在 aspx文件中):

  <%@ Import Namespace= System Data %>

  在 cs文件中 将Page_Load中的注释部分(//这里将要插入子表的数据绑定)替换成下列代码:

SqlDataAdapter cmd = new SqlDataAdapter( select * from titleauthor cnn);cmd Fill(ds titles );ds Relations Add( myrelation ds Tables[ authors ] Columns[ au_id ] ds Tables[ titles ] Columns[ au_id ]);

   保存并编译应用程序    在浏览器中察看修改后的页面 显示格式类似于下面的格式:

PS BU BU PC BU TC  

  四 完整的代码

Nestedrepeater aspx <%@ Page Language=C# Inherits= yourprojectname nestedrepeater %><%@ Import Namespace= System Data %>

<><body><form runat=server>

<! start parent repeater ><asp:repeater id= parent runat= server >  <itemtemplate>   <b><%# DataBinder Eval(Container DataItem au_id ) %></b><br>

   <! start child repeater >   <asp:repeater id= child datasource= <%# ((DataRowView)Container DataItem) Row GetChildRows( myrelation ) %> runat= server >    <itemtemplate>      <%# DataBinder Eval(Container DataItem [\ title_id\ ] )%><br>     </itemtemplate>   </asp:repeater>   <! end child repeater >

 </itemtemplate></asp:repeater><! end parent repeater >

</form></body></>Nestedrepeater aspx cs using System;using System Data;using System Data SqlClient;using System Web;using System Web SessionState;using System Web UI;using System Web UI WebControls;

namespace yourprojectname{ public class nestedrepeater : System Web UI Page  {   protected System Web UI WebControls Repeater parent;   public nestedrepeater()   {     Page Init += new System EventHandler(Page_Init);   }   public void Page_Load(object sender EventArgs e)   {     //Create the connection and DataAdapter for the Authors table      SqlConnection cnn = new SqlConnection( server=(local);database=pubs;uid=sa;pwd=; );     SqlDataAdapter cmd = new SqlDataAdapter( select * from authors cnn);

     //Create and fill the DataSet      DataSet ds = new DataSet();     cmd Fill(ds authors );

     //Create a second DataAdapter for the Titles table      SqlDataAdapter cmd = new SqlDataAdapter( select * from titleauthor cnn);     cmd Fill(ds titles );

     //Create the relation beween the Authors and Titles tables      ds Relations Add( myrelation      ds Tables[ authors ] Columns[ au_id ]      ds Tables[ titles ] Columns[ au_id ]);

     //Bind the Authors table to the parent Repeater control and call DataBind      parent DataSource = ds Tables[ authors ];     Page DataBind();

lishixin/Article/program/net/201311/15734
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
水利水电工程单元工程施工质量验收评定标准——土石方工程(SL 631... 关于水利水电工程项目划分的规程有哪些?划分的越细越好,感谢大家的帮 ... 水利水电工程的单位工程包括哪些工程? 尖子生学案:生物高中选修3目录 U盘传了数据怎么删除电脑记录如何清除电脑上U盘使用记录 把u盘插电脑怎么删掉记忆如何删掉电脑上插过U盘的记录 win7清除u盘记录 如何清理win7电脑u盘痕迹如何清除电脑上U盘使用记录 麦当劳和华莱士的外卖电话是什么? 一文详解ISO/IEC20000信息技术服务管理体系认证好处、材料、流程 有谁知道西北师范大学的代理服务器地址!! 西北师范大学 政治审核表 在哪里下载 word能新建,但打开时却提示未安装 提示未安装word97或更高版本 张莹多少岁了?银龙股份董事 张跃进哪年出生的?银龙股份独立董事 银龙股份属于什么板块? 798509 无保6位QQ 万人骑吧。 密码^U=m{J'481RH,'s 健康养殖模式包括哪些方面 刚需购房标准是什么 急求 幽默的搞笑的 班级元旦晚会开场白 今晚七点就开始 太忙了都没时间准备 怎么办 愿有好心人鼎力相助... 班级晚会主持词范文(精选3篇) 说一个男生招人稀罕是什么意思? 女孩碰到男人说真稀罕啥意思? 房东的猫为什么叫孟慧圆 孟慧圆为什么会上春晚节目 孟慧圆直播间叫什么 孟慧圆为什么不能提妈妈 孟慧圆为什么叫老板娘 孟慧圆是什么店的老板娘 孟慧圆怎么出名的 asp:Repeater中的服务器控件怎么用? 求ASP大神,Repeater的用法,及Repeater中的控件异步刷新方法。 VS的repeater控件的使用问题 装修设计如何收费218室内设计师收费情况公布 漂白水能洗掉伊红美蓝么? 五年级语文上册第二课《小苗与大树的对话》教案 术师手册芙瑞雅是万人骑嘛 微星510m主板不开机,待机功率大 影驰510m主板设置显卡模式 微星510m主板拔电池能开机,风扇转一下就停了 510m主板怎么超频到2400 影驰b510m光影主板怎么设置 影驰510m主板自动关闭兼容模式 华硕510m-e主板支持神光同步吗 我想问问重庆海底世界在哪里 德勤全球交付中心可以转德勤吗 一个西瓜里有多少瓜种? 一个西瓜有多少块? 联想平板电脑在国外能用 wifi 上网吗?会不会产生费用啊? 宇航员保护小行星失败