How to access controls in the child template- December 16, 2006 The following code in C works for my sample: for(int i = 0; i < HG1.Items.Count; i++) HierarGrid c = (HierarGrid) HG1.Itemsi.Cells1.FindControl("DCP").FindControl("Panel_Author_Title").FindControl("ChildTemplate_Author_Title").FindControl("HG1"); for(int j = 0; j < c.Items.Count; j++) string title =...http://www.denisbauer.com/weblog/HowToAccessControlsInTheChildTemplate.aspx |