🎴 Flashcard Mode

ASP.NET Fundamentals

Card1 / 13
Mastered0
Review0
QuestionClick to flip

Custom Controls are derived from which of the classes

AnswerClick to flip back
A
System.Web.UI.Customcontrols.Webcontrol
💡 Explanation:

Custom controls in ASP.NET typically derive from System.Web.UI.WebControls.WebControl (for UI-heavy controls) or System.Web.UI.Control (for logic-heavy controls). The option provided (2625) appears to be a specific or slightly mislabeled hierarchy, but WebControl is the standard base.

Change Mode