vote up 3 vote down star

I am comparing the two base classes of each namespace and am a bit confused.

System.Web.UI.WebControls.WebControl
System.Web.UI.HtmlControls.HtmlControl

I see small difference between the two. For instance, HtmlControl has much fewer properties while WebControl has a lot of properties like the CssClass property. Other than just extra properties the WebControl base class seems to be more robust in the way it handles rendering.

Why the need to have two namespaces and two sets of almost Identical Controls?

flag

3 Answers

vote up 7 vote down check

The controls in System.Web.UI.HtmlControls are just a thin wrapper around actual HTML controls. System.Web.UI.WebControls.WebControl are your standard ASP.NET controls.

To expand on this a bit:

The System.Web.UI.HtmlControls namespace contains classes that allow you to create HTML server controls on a Web Forms page. HTML server controls run on the server and map directly to standard HTML tags supported by most browsers. This allows you to programmatically control the HTML elements on a Web Forms page.

link|flag
But if I have an almost identical System.Web.UI.WebControl, why not just use that one instead? Is performance really that much of a difference? – Brig Lamoreaux Dec 29 '08 at 20:35
I'd stick with the WebControls unless you have some specific reason to use the HtmlControls. – R. Bemrose Dec 30 '08 at 13:21
vote up 0 vote down

RadioButtonList is an ASP.NET WebControl. But no such control exists in HTML - in HTML you'd have a group of INPUT controls with type "radio" which share the same name attribute value.

So, WebControls are ASP.NET controls that render to HTML controls. HtmlControl is the actual representation of an HTML control on a page.

link|flag
I'm going to assume you mean with type radio? – R. Bemrose Dec 29 '08 at 18:35
@R. Bemrose, thanks. :) I forgot which control I used as an example. – Kon M Dec 29 '08 at 18:38
vote up 0 vote down

From w3schools:

Like HTML server controls, Web server controls are also created on the server and they require a runat="server" attribute to work. However, Web server controls do not necessarily map to any existing HTML elements and they may represent more complex elements.

Web controls are usually a little more powerful, but also require a little more resources to dynamically generate the corresponding HTML.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.