PrepAway - Latest Free Exam Questions & Answers

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.

PrepAway - Latest Free Exam Questions & Answers

A.
@{ Html.RenderPartial(“People”, Model);}

B.
@Html.Partial(“People”, Model)

C.
@Html.Display(“People”, Model)

D.
@Html.Raw(“People”)

Explanation:
By default, any partial view rendered bycalling @Html.Partial(“PartialViewName”) will get the view model
passed to the parent view.
How to populate mvc razor partial view
http://stackoverflow.com/questions/13769707/how-to-populate-mvc-razor-partial-view

4 Comments on “Which two code segments will achieve the goal?


Leave a Reply