Hi
I support a website who uses dnn 5.6.3 and has some own function programmed for it. Here I would like to add a checkbox and if the checkbox is clicked some table fields get unhidden. My Code is:
<asp:CheckBoxid="CbParticipate"runat="server"text="Teilnehmen"OnCheckedChanged="CbParticipate_CheckedChanged"/>
ProtectedSub CbParticipate_CheckedChanged(sender AsObject, e AsEventArgs)
If CbParticipate.Checked = TrueThen
contest(True)
EndIf
EndSub
When I deploy that to the server still nothing happens on check the checkbox. the code inside of the event handler seems to be alright, since it works when I call it on pageload. But I guess the event handler is never raised. Can anyone say what I am doing wrong?
thanks
NPadrutt