zoukankan      html  css  js  c++  java
  • 如何访问HeaderTemplate中的控件 dodo

    在DataGrid的ItemCreated事件中   
       if    (e.Item.ItemType==ListItemType.Header)   
       {   
       ((LinkButton)e.Item.Cells[i].Controls[1]).Text="haha";   
       }   
      
       
       1.datagrid.Controls(0)    是{System.Web.UI.WebControls.DataGridTable}   
       2.datagrid.Controls(0).Controls(i)    是第i行   
           相当于ItemCreated、ItemCommand事件中的e.Item   
       3.datagrid.Controls(0).Controls(i).Controls(j)    是第i行,第j+1列(0行一般是表头)   
           相当于ItemCreated、ItemCommand事件中的e.Item.cells(j)   
       4.datagrid.Controls(0).Controls(i).Controls(j).Controls(k)    是第i行,第j+1列,第k+1个控件     
           相当于ItemCreated、ItemCommand事件中的e.Item.Cells(j).Controls(k)   
       5.或   
           datagrid.Controls(0).Controls(i).Controls(j).FindControls("cid")   
           相当于ItemCreated、ItemCommand事件中的e.Item.Cells(j).FindControls("cid")   
  • 相关阅读:
    Spring源码剖析4:懒加载的单例Bean获取过程分析
    css3动画 9步
    删除文件
    监听变量的方法
    jPaginate应用
    bg-render+bg-class+filter
    css兼容处理
    系统前端关键点
    token 入门教程
    svg笔记----------path篇
  • 原文地址:https://www.cnblogs.com/zgqys1980/p/1087261.html
Copyright © 2011-2022 走看看