I'm trying to make a ASP.NET custom control in C# (NOT a user control) that contains multiple controls. I'm having a hard time seeing how to create the control so that when dropped into a web application (in Visual Studio), all the sub-controls will be displayed. It seems there are some methods missing in my control class that need to be there to actually display all the controls. Anyone have a simple example of a custom control that will display, say, a couple buttons when dropped into a web application?
This seems to be straight forward when creating a user control, but I want this to be a part of my control library instead of copying an ascx file wherever I want to use the control.
Thanks in advance.
This seems to be straight forward when creating a user control, but I want this to be a part of my control library instead of copying an ascx file wherever I want to use the control.
Thanks in advance.