Control, Web Control and Composite Control | | |
Hello,
I am working in a class library with various custom controls.
In which cases should a control inherit Control, WebControl and
CompositeControl classes?
And when should a custom control implement INamingContainer?
In this moment I am working on a custom control that is composed by a
TextBox, a Label, two Validator controls and a button.
I don't want it to render a tag around these controls. Should I, in
this case, inherit it from Composite Control? And do I need to
implement INamingContainer?
Thanks,
Miguel | | | | re: Control, Web Control and Composite Control
System.Web.UI.Control is the base class for all ASP.Net Controls.
System.Web.UI.WebControls.WebControl inherits Control, and is the base class
for all ASP.Net WebControls. It contains a number of common properties and
methods that are used by all WebControls. You would inherit this class when
you want to employ some or all of those additional properties and methods.
System.Web.UI.WebControls.CompositeControl is the base class for all
WebControls that host other System.Web.UI.Controls. It is used when you want
to composite a number of Controls into a single Control. It is a container
which serves as the intermediary and coordinator of the Controls it
contains. It implements INamingContainer, which is an interface that ensures
that each Control has a unique ClientID, by combining their ID properties
with the INamingContainer Control in which they are hosted.
You probably want to create a CompositeControl. The following MSDN pages
should help with this: http://msdn2.microsoft.com/en-us/library/zt27tfhy.aspx http://msdn2.microsoft.com/en-us/library/3257x3ea.aspx
--
HTH,
Kevin Spencer
Chicken Salad Surgeon
Microsoft MVP
"shapper" <mdmoura@gmail.comwrote in message
news:0e1b1939-11fd-4cfc-8add-1dddd6fc03d6@f3g2000hsg.googlegroups.com... Quote:
Hello,
>
I am working in a class library with various custom controls.
>
In which cases should a control inherit Control, WebControl and
CompositeControl classes?
>
And when should a custom control implement INamingContainer?
>
In this moment I am working on a custom control that is composed by a
TextBox, a Label, two Validator controls and a button.
>
I don't want it to render a tag around these controls. Should I, in
this case, inherit it from Composite Control? And do I need to
implement INamingContainer?
>
Thanks,
>
Miguel
| | | | re: Control, Web Control and Composite Control
On Dec 20, 12:39 pm, "Kevin Spencer" <unclechut...@nothinks.com>
wrote: Quote:
System.Web.UI.Control is the base class for all ASP.Net Controls.
System.Web.UI.WebControls.WebControl inherits Control, and is the base class
for all ASP.Net WebControls. It contains a number of common properties and
methods that are used by all WebControls. You would inherit this class when
you want to employ some or all of those additional properties and methods.
>
System.Web.UI.WebControls.CompositeControl is the base class for all
WebControls that host other System.Web.UI.Controls. It is used when you want
to composite a number of Controls into a single Control. It is a container
which serves as the intermediary and coordinator of the Controls it
contains. It implements INamingContainer, which is an interface that ensures
that each Control has a unique ClientID, by combining their ID properties
with the INamingContainer Control in which they are hosted.
>
You probably want to create a CompositeControl. The following MSDN pages
should help with this:
> http://msdn2.microsoft.com/en-us/lib.../3257x3ea.aspx
>
--
HTH,
>
Kevin Spencer
Chicken Salad Surgeon
Microsoft MVP
>
"shapper" <mdmo...@gmail.comwrote in message
>
news:0e1b1939-11fd-4cfc-8add-1dddd6fc03d6@f3g2000hsg.googlegroups.com...
> > Quote:
I am working in a class library with various custom controls.
> Quote:
In which cases should a control inherit Control, WebControl and
CompositeControl classes?
> Quote:
And when should a custom control implement INamingContainer?
> Quote:
In this moment I am working on a custom control that is composed by a
TextBox, a Label, two Validator controls and a button.
> Quote:
I don't want it to render a tag around these controls. Should I, in
this case, inherit it from Composite Control? And do I need to
implement INamingContainer?
> > I am having a problem here with Composite Control. It "wrappes" the
controls in a Span Tag.
Sure I can override the BeginTag but what I would like would to not
render any tag at all.
Just renders the controls inside the custom control.
I was able to pull this by inheriting it from Control.
So I have a Custom control, inheriting Control and Implementing
INamingContainer, which contains various controls.
This way it renders all child controls but without any wrapper tag.
Is this ok?
Thanks,
Miguel | | | | re: Control, Web Control and Composite Control
sure, or if you want the composite control, just override RenderBeginTag and
RenderEndTag and make them nop's.
the main disadvantage of not using a span or div, is that the controls do
not have a common parent in the dom, so absolute postioning will not work
without client code to apply it to each element.
-- bruce (sqlwork.com)
"shapper" wrote: Quote:
On Dec 20, 12:39 pm, "Kevin Spencer" <unclechut...@nothinks.com>
wrote: Quote:
System.Web.UI.Control is the base class for all ASP.Net Controls.
System.Web.UI.WebControls.WebControl inherits Control, and is the base class
for all ASP.Net WebControls. It contains a number of common properties and
methods that are used by all WebControls. You would inherit this class when
you want to employ some or all of those additional properties and methods.
System.Web.UI.WebControls.CompositeControl is the base class for all
WebControls that host other System.Web.UI.Controls. It is used when you want
to composite a number of Controls into a single Control. It is a container
which serves as the intermediary and coordinator of the Controls it
contains. It implements INamingContainer, which is an interface that ensures
that each Control has a unique ClientID, by combining their ID properties
with the INamingContainer Control in which they are hosted.
You probably want to create a CompositeControl. The following MSDN pages
should help with this: http://msdn2.microsoft.com/en-us/lib.../3257x3ea.aspx
--
HTH,
Kevin Spencer
Chicken Salad Surgeon
Microsoft MVP
"shapper" <mdmo...@gmail.comwrote in message
news:0e1b1939-11fd-4cfc-8add-1dddd6fc03d6@f3g2000hsg.googlegroups.com... Quote:
I am working in a class library with various custom controls.
Quote:
In which cases should a control inherit Control, WebControl and
CompositeControl classes?
Quote:
And when should a custom control implement INamingContainer?
Quote:
In this moment I am working on a custom control that is composed by a
TextBox, a Label, two Validator controls and a button.
Quote:
I don't want it to render a tag around these controls. Should I, in
this case, inherit it from Composite Control? And do I need to
implement INamingContainer?
>
I am having a problem here with Composite Control. It "wrappes" the
controls in a Span Tag.
Sure I can override the BeginTag but what I would like would to not
render any tag at all.
Just renders the controls inside the custom control.
>
I was able to pull this by inheriting it from Control.
So I have a Custom control, inheriting Control and Implementing
INamingContainer, which contains various controls.
This way it renders all child controls but without any wrapper tag.
Is this ok?
>
Thanks,
Miguel
>
| | | | re: Control, Web Control and Composite Control
Hello Quote:
sure, or if you want the composite control, just override RenderBeginTag
and
RenderEndTag and make them nop's.
Or simply overwrite the property "TagKey" and return the desired value.
--
Gruss, Peter Bucher
Microsoft MVP - Visual Developer ASP / ASP.NET, Switzerland http://www.aspnetzone.de/ - ASP.NET Zone, die ASP.NET Community http://www.aspnetzone.de/blogs/peterbucher/ - Auf den Spuren von .NET | | | | re: Control, Web Control and Composite Control
That sounds like an excellent solution.
--
HTH,
Kevin Spencer
Chicken Salad Surgeon
Microsoft MVP
"shapper" <mdmoura@gmail.comwrote in message
news:e12d72b3-09ac-4051-af5b-4fde4058654d@b1g2000pra.googlegroups.com... Quote:
On Dec 20, 12:39 pm, "Kevin Spencer" <unclechut...@nothinks.com>
wrote: Quote:
>System.Web.UI.Control is the base class for all ASP.Net Controls.
>System.Web.UI.WebControls.WebControl inherits Control, and is the base
>class
>for all ASP.Net WebControls. It contains a number of common properties
>and
>methods that are used by all WebControls. You would inherit this class
>when
>you want to employ some or all of those additional properties and
>methods.
>>
>System.Web.UI.WebControls.CompositeControl is the base class for all
>WebControls that host other System.Web.UI.Controls. It is used when you
>want
>to composite a number of Controls into a single Control. It is a
>container
>which serves as the intermediary and coordinator of the Controls it
>contains. It implements INamingContainer, which is an interface that
>ensures
>that each Control has a unique ClientID, by combining their ID properties
>with the INamingContainer Control in which they are hosted.
>>
>You probably want to create a CompositeControl. The following MSDN pages
>should help with this:
>>
> http://msdn2.microsoft.com/en-us/lib.../3257x3ea.aspx
>>
>--
>HTH,
>>
>Kevin Spencer
>Chicken Salad Surgeon
>Microsoft MVP
>>
>"shapper" <mdmo...@gmail.comwrote in message
>>
>news:0e1b1939-11fd-4cfc-8add-1dddd6fc03d6@f3g2000hsg.googlegroups.com...
>> >> Quote:
I am working in a class library with various custom controls.
>> Quote:
In which cases should a control inherit Control, WebControl and
CompositeControl classes?
>> Quote:
And when should a custom control implement INamingContainer?
>> Quote:
In this moment I am working on a custom control that is composed by a
TextBox, a Label, two Validator controls and a button.
>> Quote:
I don't want it to render a tag around these controls. Should I, in
this case, inherit it from Composite Control? And do I need to
implement INamingContainer?
>> >> >
I am having a problem here with Composite Control. It "wrappes" the
controls in a Span Tag.
Sure I can override the BeginTag but what I would like would to not
render any tag at all.
Just renders the controls inside the custom control.
>
I was able to pull this by inheriting it from Control.
So I have a Custom control, inheriting Control and Implementing
INamingContainer, which contains various controls.
This way it renders all child controls but without any wrapper tag.
Is this ok?
>
Thanks,
Miguel
| | | | re: Control, Web Control and Composite Control
On Dec 20, 4:51 pm, bruce barker
<brucebar...@discussions.microsoft.comwrote: Quote:
sure, or if you want the composite control, just override RenderBeginTag and
RenderEndTag and make them nop's.
>
the main disadvantage of not using a span or div, is that the controls do
not have a common parent in the dom, so absolute postioning will not work
without client code to apply it to each element.
>
-- bruce (sqlwork.com)
>
"shapper" wrote: Quote:
On Dec 20, 12:39 pm, "Kevin Spencer" <unclechut...@nothinks.com>
wrote: Quote:
System.Web.UI.Control is the base class for all ASP.Net Controls.
System.Web.UI.WebControls.WebControl inherits Control, and is the base class
for all ASP.Net WebControls. It contains a number of common properties and
methods that are used by all WebControls. You would inherit this class when
you want to employ some or all of those additional properties and methods.
> Quote: Quote:
System.Web.UI.WebControls.CompositeControl is the base class for all
WebControls that host other System.Web.UI.Controls. It is used when you want
to composite a number of Controls into a single Control. It is a container
which serves as the intermediary and coordinator of the Controls it
contains. It implements INamingContainer, which is an interface that ensures
that each Control has a unique ClientID, by combining their ID properties
with the INamingContainer Control in which they are hosted.
> Quote: Quote:
You probably want to create a CompositeControl. The following MSDN pages
should help with this:
> > > Quote: Quote:
Kevin Spencer
Chicken Salad Surgeon
Microsoft MVP
> Quote: Quote:
"shapper" <mdmo...@gmail.comwrote in message
> Quote: Quote:
>news:0e1b1939-11fd-4cfc-8add-1dddd6fc03d6@f3g2000hsg.googlegroups.com...
> > Quote: Quote:
I am working in a class library with various custom controls.
> Quote: Quote:
In which cases should a control inherit Control, WebControl and
CompositeControl classes?
> Quote: Quote:
And when should a custom control implement INamingContainer?
> Quote: Quote:
In this moment I am working on a custom control that is composed by a
TextBox, a Label, two Validator controls and a button.
> Quote: Quote:
I don't want it to render a tag around these controls. Should I, in
this case, inherit it from Composite Control? And do I need to
implement INamingContainer?
> > > Quote:
I am having a problem here with Composite Control. It "wrappes" the
controls in a Span Tag.
Sure I can override the BeginTag but what I would like would to not
render any tag at all.
Just renders the controls inside the custom control.
> Quote:
I was able to pull this by inheriting it from Control.
So I have a Custom control, inheriting Control and Implementing
INamingContainer, which contains various controls.
This way it renders all child controls but without any wrapper tag.
Is this ok?
> "sure, or if you want the composite control, just override
RenderBeginTag and
RenderEndTag and make them nop's. "
What do you mean with nop's? Can you give me a sample code?
Thanks,
Miguel |  | | | | /bytes/about
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 226,295 network members.
|