To which property of the Control class are constituent controls added?
-
ViewState
-
Collection
-
StateBag
-
Controls
D
Correct answer
Explanation
The Controls property of the Control class is a ControlCollection object that holds all child controls added to a parent control. ViewState is for persisting control state across postbacks, StateBag is the internal storage for ViewState, and Collection is a generic .NET class not specific to control hierarchies.