Question:
You are developing a Web forms application. The application contains three user controls. You need to dynamically load the appropriate user control to a specific location on the default Web page after a user logs in. Which actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.
A p { margin-bottom: 0.08in; }
Register the user control on the page by using the Register directive.
B p { margin-bottom: 0.08in; }
Add the control to a Placeholder control in the Page_Load() method.
C p { margin-bottom: 0.08in; }
Add the control to a Placeholder control in the Page_Render() method.
D p { margin-bottom: 0.08in; }
Add the control to the Page control collection in the Page_Load() method.
E p { margin-bottom: 0.08in; }
Add the control to the Page control collection in the Page_Render() method.
F p { margin-bottom: 0.08in; }
Load the user control into a Control object by using the LoadControl() method.
+ AnswerB F
+ Report