Home »

How route table is created in ASP.NET MVC?

Question ListCategory: ASP.NETHow route table is created in ASP.NET MVC?
ethanbrown author asked 8 years ago
1 Answers
adamemliy16 author answered 8 years ago

When an MVC application first starts, the Application_Start() method is called. This method, in turn, calls
the RegisterRoutes() method. The RegisterRoutes() method creates the route table.

Please login or Register to Submit Answer