3.4.2 Question
Multiple Choice
You are developing an ASP.NET MVC application. You noticed a bug on the DVD controller of the application. You want to ignore the DVD pages until the bug is fixed. What should you do?
- A. Add route.SetItem(route.Count, “dvd/”); to the RegisterRoute method.
- B. Add route.IgnoreRoute(“dvd/”); to the RegisterRoute method.
- C. Add route.Insert(route.Count,“dvd/”); to the RegisterRoute method.
- D. Add route.Remove(“dvd/”); to the RegisterRoute method.