Hi
Thanks.. would anyone be able to guide me on resubscribe to the event in the page load? i am seeing this a lot online as the solution to the problem, but i don't know how to do that.
would it be something like:
Code:
ChkLikeComment.CheckedChanged += New EventHandler(chkLikeComment_CheckedChanged)
i tried doing that in the repeater item databound but it was underlined with an error stating that it is an event and cannot be called directly and to use raise event instead..
i also tried doing that in the page load but it does not recognise ChklikeComment becuase it is in the repeater and also underlined (chkLikeComment_CheckedChanged) wiht an error that says
"Delegate 'System.EventHandler' requires an 'AddressOf' expression or lambda expression as the only argument to it's constructor"
i am really lost as to how to get this check box to work within the repeater.. i need to get this done for a school project as soon as possible.... would appreciate any help i can get.