• 【转】如何在Repeater的HeaderTemplate和FooterTemplate模板中寻找控件?


    在Repeater的ItemTemplate模板中的控件,我们可以用Items属性来遍历行并用FindControl进行寻找,
    如下所示:在Repeater的Item Command事件下下遍历:

    1forint i=0;i<repeater1.Items.Count;i++)   
    2   {   
    3     CheckBox cb=(CheckBox )repeater1.Items.FindControl("CheckBox1");   
    4     if(cb.Checked)   
    5     {  //相关数据处理  }   
    6  }
      

    但是,如果在HeaderTemplate和FooterTemplate模板中的控件就无能为力了,此时我们只能用Controls属性来解决问题。假设页面中有如下一个Repeater控件:
    程序代码

    Code

    下边代码示例寻找Label1和Label2:

    Code
  • 相关阅读:
    7、MyBatis动态SQL
    6、MyBatis的SQL映射(mapper)文件
    5、MyBatis传统Dao开发 & Dao动态代理开发
    4、MyBatis使用的对象 & 封装工具类
    3、MyBatis入门实例
    2、MyBatis概述
    matlab 向量操作作业
    matlab 数组操作作业
    css子选择器 :frist-child :nth-child(n) :nth-of-type(n) ::select选择器
    6.3蓝牙透传数据与微信小程序通信
  • 原文地址:https://www.cnblogs.com/gebenhagen/p/1585460.html
Copyright © 2020-2023  润新知