Re: Implementation Data Controls in asp.net Hi,
Are you defining the name of your checkbox explicitly? It is not enough to just define the item, you need to set its ID property or it won't be found by findcontrol:
CheckBox chkMyBox = new CheckBox();
chkMyBox.ID = "chkMyBox"; |