I found a programmer using a place holder like this
<asp:PlaceHolder ID="placeHolder4" runat="server">
<asp:Repeater ID="repeaterSearchBookResults" runat=server>
<HeaderTemplate>Code </HeaderTemplate>
<ItemTemplate> Code</ItemTemplate>
<FooterTemplate> Code </FooterTemplate>
</asp:Repeater>
</asp:PlaceHolder>
In the code, he did not add any controls, he did nothing except setting visible true to the place holder.
Is there some trick that I should know about place holders, or he is just too lazy to remove the place holder and use panels!!