I'm using a LinkButton in Repeater ItemTemplate but if my LinkButton is NULL then I don't want to show this Linkbutton. Can I control this LinkButton on Page Load?
<asp:Repeater ID="rptSlider" runat="server" >
<ItemTemplate>
<li>
.....
<asp:LinkButton ID="lb_url" PostBackUrl='<%#Eval("button_url") %>' runat="server">Go</asp:LinkButton>
...
</li>
</ItemTemplate>