Hello everybody , Today I am going to talk about MVC-routing , if you are a ASP.net developer , you know that how it is easy in ASP.net to make a page as a startup page, just you need to right click on a page and choose “Set as start page”. But the story in MVC is totally different because, you cannot access pages directly, you can just access and call methods, YES IT IS!!! It means the first page of your project that will be displayed after running the project is a view page that is made for a function. But you cannot start view directly, you should call the function.
www.mysample-mvc.com/home/index
Take a look at the above URL, it has three parts
- www.mysample-mvc.com(domain)
- Home ( name of controller)
- Index ( name of function)
As you see I do not mention any page in URL address, just I mention controller and function name, but in ASP.net you should mention the name of page same as this example:
www.mysample-mvc.com/home.aspx
Now the question is that how we can change the startup page. For this purpose please expand App-Start folder (kindly find it in main root of your project) and the open RouteConfig.vb, You will see this code there:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new
{ controller = "Home",
action = "Index", id = UrlParameter.Optional }
);
}
Please take a look at URL section it is look like this:
url: "{controller}/{action}/{id}",
This part tell the system that all URLs should have three parts
- Controller ( name of controller )
- Action( name of function that you want to be run )
- Id ( parameters that will be passed to the function)
You may ask if your function does not have any parameter, why you have to pass ID. You are right if the function does not have any parameter you do not need to pass any Id or parameter because we will consider it in the next line of code:
defaults: new { controller = "Home", action = "Index",
id = UrlParameter.Optional }
As you see URL is an optional parameter not mandatory.
Now everything is ready for you to change the startup page of your project, you just need to change the name of controller and action (function) in this line of code as you want:
defaults: new { controller = "Home",
action = "Index",
id = UrlParameter.Optional }