Microsoft
70-515 · Question #41
70-515 Question #41: Real Exam Question with Answer & Explanation
The correct answer is D. Add the following Code segmnet to the Register Routes in Global.asax.cs file.. See the full explanation below for the reasoning.
Question
You are implementing an ASP.NET MVC 2 application. In the Areas folder, you add a subfolder named Product to create a single project area. You add files named ProductController.cs and Index.aspx to the appropriate subfolders. You then add a file named Route.cs to the Product folder that contains the following code. (Line numbers are included for reference only.) 01 public class Routes : AreaRegistration 02 { 03 public override string AreaName 04 { 05 get { return "product"; } 06 } 07 08 public override void RegisterArea(AreaRegistrationContext context) 09 { 10 context.MapRoute("product_default", "product/{controller}/{action}/{id}", new { controller = "Product", action = "Index", id = "" }); 11 } 12 } not returned. You need to ensure that the correct page is returned. What should you do?
Options
- AReplace line 10 with the following code segment.
- BReplace line 10 with the following code segment.
- CAdd the following code segmnet at line 11
- DAdd the following Code segmnet to the Register Routes in Global.asax.cs file.
Community Discussion
No community discussion yet for this question.