What is the correct event/method in the ASP.NET life cycle to dynamically add Child Controls ?
My objective is to ensure that all the input controls on a User Control have the correct associated Validator and Label controls, based on configuration from an external file.
It seems like the correct place should be either OnInit(EventArgs e) or CreateChildControls(). Both of them are behaving a little bit unexpected, and rather than try to debug each of them, I figured I'd first ask you guys which one (or other) to use.
OutOfMemoryException(making me think there I was causing an infinite loop), a "Multiple controls with the same ID 'dynamicallyAddedRequiredFieldValdiator' were found" (making me think I put it somewhere that caused the routine to be called twice), a "Collection was modified, enumeration may not execute" error and a "The control collection cannot be modified during DataBind, Init, Load, PreRender or Unload phases.". – smartcaveman Sep 30 '11 at 12:57