Model View Controller (MVC) Question:
What is the significance of ASP.NET routing?
Answer:
ASP.NET MVC uses ASP.NET routing, to map incoming browser requests to controller action methods. ASP.NET Routing makes use of route table. Route table is created when your web application first starts. The route table is present in the Global.asax file.
Previous Question | Next Question |
What is the significance of NonActionAttribute? | What are the 3 segments of the default route, that is present in an ASP.NET MVC application? |