🎴 Flashcard Mode

Java and .NET Programming Fundamentals

Card1 / 20
Mastered0
Review0
QuestionClick to flip

What type is a div in asp.net?

AnswerClick to flip back
A
System.Web.UI.HtmlControls.HtmlGenericControl
💡 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.

Change Mode