Which two code segments will achieve the goal?

You develop an ASP.NET MVC application. The application has a controller named PeopleController.cs. The controller has an action method that returns a parent view. The parent view includes the following code.

Line numbers are included for the reference only.

The application also contains a partial view named People. The parent view must display the partial view.

You need to add code at line 09 to display the partial view within the parent view.

Which two code segments will achieve the goal? Each correct answer presents a complete solution.
A . @{ Html.RenderPartial(“People”, Model);}
B . @Html.Partial(“People”, Model)
C . @Html.Display(“People”, Model)
D . @Html.Raw(“People”)

Answer: B

Explanation:

By default, any partial view rendered by calling @Html.Partial("PartialViewName") will get the view model passed to the parent view.

References:

Latest 70-486 Dumps Valid Version with 255 Q&As

Latest And Valid Q&A | Instant Download | Once Fail, Full Refund

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments