How do i stop the header template of a repeater from displaying when there are no items in the datasource
<asp:Repeater ID="TabsRepeater" runat="server" DataSource='<%#Eval("OrderedChildNodes") %>'>
<HeaderTemplate>
<ul class="child">
</HeaderTemplate>
<ItemTemplate>
the repeater is nested in another repeater control so i can't check before databinding.