> 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
[quoted text clipped - 41 lines]
>
> > Miguel
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)
> > 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
[quoted text clipped - 56 lines]
> Thanks,
> Miguel
Peter Bucher [MVP] - 21 Dec 2007 09:32 GMT
Hello
> 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.

Signature
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
shapper - 26 Dec 2007 14:49 GMT
> sure, or if you want the composite control, just override RenderBeginTag and
> RenderEndTag and make them nop's.
[quoted text clipped - 69 lines]
> > Thanks,
> > Miguel
"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
That sounds like an excellent solution.

Signature
HTH,
Kevin Spencer
Chicken Salad Surgeon
Microsoft MVP
>> System.Web.UI.Control is the base class for all ASP.Net Controls.
>> System.Web.UI.WebControls.WebControl inherits Control, and is the base
[quoted text clipped - 63 lines]
> Thanks,
> Miguel