I have a dropdownlist:
<asp:DropDownList ID="ddlGoalKeeper" runat="server">
</asp:DropDownList>
A nice little one. I have some code to find it:
DropDownList myControl1 = (DropDownList)Page.FindControl("ddlGoalKeeper");
Not.. it's just that my myControl1
doesn't get set... so when i later in my code try to set visible to true, it doesn't work.
Any ideas?