top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

In an MVC application, what are the segments of the default route ?

+2 votes
416 views
In an MVC application, what are the segments of the default route ?
posted Sep 4, 2015 by Sathaybama

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

1 Answer

0 votes

There are 3 segments of the default route in an MVC application.They are:

The 1st segment is the Controller Name.
Example: search

The 2nd segment is the Action Method Name.
Example: label

The 3rd segment is the Parameter passed to the Action method.
Example: Parameter Id - MVC

answer Sep 7, 2015 by Manikandan J
...