AAdd a constructor to the user control. The constructor should take parameters for each
of the TextBox.Text properties. It will then set these parameter values appropriately.
BCreate properties on the user control that allow users to get and set the Text property
of each TextBox control.
CYou don't need to do anything. Controls added to a user control, by default, expose
their default property.
DAdd code to the Init method of the user control. This code should raise an event.
The page that hosts the control can then use this event to set the TextBox.Text
properties accordingly.