Hi Forum,
I am having a bit of trouble with what I thought was a simple bit of code.
The requirement is to pass some values to a user control, the user control dynamically adds check boxes to the page / user control and if the check boxes have changed then create a new value back to the page to save.
What I have discovered is that it seems I must create the dynamic checkboxes in the user control in the Init control event. If I don't do this then they don't seem to be able to be read properly.(The check value is always false)
I am passing an object to the user control that is needed to create the boxes, enabled and checked properties.
I need to the property value to be there to create the check boxes, but it does not seem possible to read the property in the Init event
Dim BizMenu As New BusinessProfileMenusBLL
Private Sub Page_Init(sender As Object, e As System.EventArgs) Go to the complete details ...