获取Repeater中Footer/HeaderTemplate 中的控件

通常我们可以在ItemCreated或者ItemDataBound事件中获取模板列中的控件,那如何在非列表控件本身事件外获取呢?
Repeater:
             foreach  (RepeaterItem item  in  rptEnquiries.Controls)
            
{
                
if (item.ItemType == ListItemType.Footer)
                
{
                    item.FindControl(
"btnSend1").Visible = true;
                    
break;
                }
              
            }
 

DataList:

DataGrid:

你可能感兴趣的:(template)