Possible Duplicate:
ASP.NET Custom Controls - Composites
How to make and use composite control in asp.net?
Possible Duplicate:
ASP.NET Custom Controls - Composites
How to make and use composite control in asp.net?
A composite control is a control that's composed of some child controls (which are added by overriding CreateChildControls
method). For a detailed article on them see MSDN: A Crash Course on ASP.NET Control Development: Building Composite Controls
here are some tutorials:
A google for "Creating a composite Control would have helped you"
"A composite control is one made up of other built-in controls, such as text boxes. You also can create a control from scratch if you don't want to use the built-in controls"
http://www.codeguru.com/csharp/.net/net_asp/webforms/article.php/c12725