0

Possible Duplicate:
ASP.NET Custom Controls - Composites

How to make and use composite control in asp.net?

Community
  • 1
  • 1
Vivek
  • 570
  • 8
  • 21

3 Answers3

2

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

Mehrdad Afshari
  • 414,610
  • 91
  • 852
  • 789
0

here are some tutorials:

codesource.com

Codeguru.com

MSDN

A google for "Creating a composite Control would have helped you"

TheVillageIdiot
  • 40,053
  • 20
  • 133
  • 188
0

"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

caiokf
  • 344
  • 6
  • 14