How to build a composite control - C#.NET

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.
How to license your control - C#.NET
Explain how to license your control - Create Activex Control that needs license at runtime: Assume control...
What are Strong Named Assemblies? Explain steps to create them - C#.NET
What are Strong Named Assemblies? - They are the assemblies which can be uniquely identified by attaching the strong name to the dll name...
Ways to deploy your windows application - C#.NET
Explain the ways to deploy your windows application - Merge Module Project: Allows the package of the components to be shared between multiple applications...
Post your comment