Hi
I have an ASP.Net Repeater Control, which I add to an ASP.Net PlaceHolder Control. The reason being is that I want to show the repeater control a number of times. For example, to repeat the control for a number of teams, such as team 1, team 2 and so on.
The repeater control is held in a user control. However, I am encountering a few problems:
1) In the user control outsider of the repeater control I have a label which will show the team name, the problem that I am getting is whilst the placeholder shows the name of the team, it is showing each team name under one another rather than team name
and then repeater control
2) The second problem that I am getting is that when I add the user control that contains the repeater, the repeater item event is not being fired to add the items to the repeater control.
The user control is added dynamically to the placeholder - here is the code snippet:
Go to the complete details ...