top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Explain about the formation of Router Table in ASP.NET MVC ?

+2 votes
380 views
Explain about the formation of Router Table in ASP.NET MVC ?
posted Sep 4, 2015 by Sathaybama

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

The Router Table is formed by following the below procedure:

In the beginning stage, when the ASP.NET application starts, the method known as Application_Start() method is called.
The Application_Start() will then calls RegisterRoutes() method.
This RegisterRoutes() method will create the Router table.

answer Sep 7, 2015 by Manikandan J
...