Hi All,
I want to disable the control in placeholder. I am adding the control dynamically in the placeholder. Below is the code
The aspx code is:
<td class="MainNavHead" align="left" id="tdApplications" runat="server">
<asp:PlaceHolder ID="phApplications" runat="server"></asp:PlaceHolder>
</td>
and the code behind is
Me.phApplications.Controls.Add(bItem)
bItem is the name of the button that I am adding in placeholder. I am doing this in a loop
Is there any way, I can disable one of the item in the placeholder.
Go to the complete details ...