Model View Controller (MVC) Question:
ASP.NET MVC application, makes use of settings at 2 places for routing to work correctly. What are these 2 places?

Answer:
1. Web.Config File : ASP.NET routing has to be enabled here.
2. Global.asax File : The Route table is created in the application Start event handler, of the Global.asax file.
2. Global.asax File : The Route table is created in the application Start event handler, of the Global.asax file.
Previous Question | Next Question |
What are the 3 segments of the default route, that is present in an ASP.NET MVC application? | What is the adavantage of using ASP.NET routing? |