Hi You need not attach event handler at run time for inner controls. You can do it design time If you are using C#, then Repeater's ItemDataBound event will be as
protected void Repeater1_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
//Repeater 1 gets fired
}
Make sure that in the HTML code has 'OnItemDataBound' and set it as 'Repeater1_ItemDataBound' Now for inner repeater, copy the above code for Repeater1's event and rename it to second repeater. So second repeater event will be like this.
protected void Repeater2_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
//Repeater 2 gets fired
}
and in your HTML code will be as 'OnItemDataBound' and set it as 'Repeater1_ItemDataBound' Repeat the same for next inner repeater. So, inner controls' events automatically gets fired. :)
Harini