Multiple choice technology programming languages

What type is a div in asp.net?

  1. System.Web.UI.HtmlControls.HtmlMeta

  2. System.Web.UI.HtmlControls.HtmlInputText

  3. System.Web.UI.HtmlControls.HtmlControl

  4. System.Web.UI.HtmlControls.HtmlGenericControl

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

In ASP.NET, a generic HTML element like

is represented by the HtmlGenericControl class from the System.Web.UI.HtmlControls namespace. Unlike specific elements like (HtmlInputText) or (HtmlMeta), generic HTML elements without dedicated server control classes map to this flexible base class.