Microsoft
70-515 · Question #32
70-515 Question #32: Real Exam Question with Answer & Explanation
The correct answer is B. Add a new folder named Products to the Dynamic Data\CustomPages folder of the Web site.. See the full explanation below for the reasoning.
Question
You are implementing an ASP.NET Dynamic Data Web site. The Web site includes a data context that enables automatic scaffolding for all tables in the data model. The Global.asax.cs file contains the following code segment. public static void RegisterRoutes(RouteCollection routes) { routes.Add(new DynamicDataRoute("{table}/ListDetails.aspx") { Action = PageAction.List, ViewName = "ListDetails", Model = DefaultModel }); routes.Add(new DynamicDataRoute("{table}/ListDetails.aspx") { Action = PageAction.Details, ViewName = "ListDetails", Model = DefaultModel }); } You need to display the items in a table named Products by using a custom layout. What should you do?
Options
- AAdd a new Web page named Products.aspx to the Dynamic Data\PageTemplates folder of
- BAdd a new folder named Products to the Dynamic Data\CustomPages folder of the Web site.
- CAdd a new Web user control named Products.ascx to the Dynamic Data\Filters folder of the
- DAdd a new Web user control named Products_ListDetails.ascx to the Dynamic
Community Discussion
No community discussion yet for this question.