7
Reply

Where is RouteTable stored in MVC?

Sreeni Dony

Sreeni Dony

Jul 22, 2015
4.1k
0

    RouteTable is a collection of routes that is stored in RouteConfig.cs file in App_Start folder of the application.

    Sanjukta Pearl
    August 17, 2015
    1

    When a MVC application first starts, the application _start() method is called. This method in turn calls RegisterRoutes() method which creates Route table.

    Munesh Sharma
    August 05, 2015
    1

    When a MVC application first starts, the application _start() method is called. This method in turn calls RegisterRoutes() method which creates Route table.

    Kml Surani
    December 21, 2015
    0

    It can be stored in RouteConfig.cs as well as in Global.asax file to define the route of the request URLs to call the particular controller.

    Arvind Nigam
    December 14, 2015
    0

    RouteTable provides route for MVC application. public static void RegisterRoutes(RouteCollection routes) {routes.MapRoute("Default", // Route name"{controller}/{action}/{id}", // Route Patternnew { controller = "Home", action = "Index", id = UrlParameter.Optional } // Default values for above defined parameters); }protected void Application_Start() {RegisterRoutes(RouteTable.Routes);//To:DO }

    Srikanth Reddy
    November 02, 2015
    0

    Route Table store on IIS

    Sourabh Dwivedi
    August 19, 2015
    0

    http://dotnet-munesh.blogspot.in/2015/05/create-first-aspnet-mvc-application.html

    Munesh Sharma
    August 05, 2015
    0