C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
iOS
Java
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
7
Reply
Where is RouteTable stored in MVC?
Sreeni Dony
10y
4.1k
0
Reply
Delete Row
Delete Column
Insert Link
×
Insert
Cancel
Embed YouTube Video
×
Width (%)
Height (%)
Insert
Cancel
Table Options
×
Rows
Columns
First row as header
Create Table
Insert Image
×
Selected file:
Alignment
Left
Center
Right
Select an image from your device to upload
Upload to Server
Cancel
Submit
RouteTable is a collection of routes that is stored in RouteConfig.cs file in App_Start folder of the application.
Sanjukta Pearl
10y
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
10y
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
10y
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
10y
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
10y
0
Route Table store on IIS
Sourabh Dwivedi
10y
0
http://dotnet-munesh.blogspot.in/2015/05/create-first-aspnet-mvc-application.html
Munesh Sharma
10y
0
Message