K
kpg
InASP.NET 2.0 I have a checkbox named CB1
<asp:CheckBox ID="CB1" runat="server" />
In the Page_Load event:
dim cb as checkbox
cb = ctype(findcontrol("CB1"), checkbox)
but cb = nothing
Am I going crazy? This should work, right?
tia
kpg
<asp:CheckBox ID="CB1" runat="server" />
In the Page_Load event:
dim cb as checkbox
cb = ctype(findcontrol("CB1"), checkbox)
but cb = nothing
Am I going crazy? This should work, right?
tia
kpg