Explain how to build a composite control. Steps to create a Composite control:
1. Select a project 2. Right click and add a new item (User Control - .ascx) to the selected project. 3. Add @Control Directive 4. Add all the controls that you want to be displayed on the User control as a part of one or more web pages. 5. Write the code for all the tasks to be performed by the user control. 6. Create accessor methods for the outside world accessing this user control.
|