If I cannot use OnPreInit in Controls, how can I add my controls dynamically on the right time?
Hi, I want to have a user control which will add some checkboxes in a asp.NET panel dynamically. Simply I was believing I can do that easily in control's OnPreInit method. But the thing is I have learn that I cannot use and override OnPreInit method on Controls; it is only used for pages. I do not want to solve this from the page by c...