Premium Only Content

Part 4 Controllers in an mvc application
In this video we will discuss about controllers. Please watch Part 3 of MVC tutorial before proceeding. In Part 3, we discussed that, the URL - http://localhost/MVCDemo/Home/Index will invoke Index() function of HomeController class. So, the question is, where is this mapping defined. The mapping is defined in Global.asax. Notice that in Global.asax we have RegisterRoutes() method.
RouteConfig.RegisterRoutes(RouteTable.Routes);
Right click on this method, and select "Go to Definition". Notice the implementation of RegisterRoutes() method in RouteConfig class. This method has got a default route.
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 }
);
}
The following URL does not have id. This is not a problem because id is optional in the default route.
http://localhost/MVCDemo/Home/Index
Now pass id in the URL as shown below and press enter. Nothing happens.
http://localhost/MVCDemo/Home/Index/10
Change the Index() function in HomeController as shown below.
public string Index(string id)
{
return "The value of Id = " + id;
}
Enter the following URL and press enter. We get the output as expected.
http://localhost/MVCDemo/Home/Index/10
In the following URL, 10 is the value for id parameter and we also have a query string "name".
http://localhost/MVCDemo/home/index/10?name=Pragim
Change the Index() function in HomeController as shown below, to read both the parameter values.
public string Index(string id, string name)
{
return "The value of Id = " + id + " and Name = " + name;
}
Just like web forms, you can also use "Request.QueryString"
public string Index(string id)
{
return "The value of Id = " + id + " and Name = " + Request.QueryString["name"];
}
-
Tactical Advisor
48 minutes agoNew Thermal Target for the Military | Vault Room Live Stream 038
521 -
1:57:14
vivafrei
17 hours agoEp. 280: RFK Jr. Senate Hearing! Activist Fed Judges! Epstein Victims DEBACLE! & MORE! Viva & Barnes
53.7K54 -
LIVE
Major League Fishing
3 days agoLIVE Tackle Warehouse Invitationals Championship, Day 3
393 watching -
LIVE
GritsGG
1 hour agoTop 250 Ranked Grind! Dubulars!🫡
209 watching -
LIVE
TheManaLord Plays
5 hours agoMANA SUMMIT - DAY 2 ($10,200+) | BANNED PLAYER SMASH MELEE INVITATIONAL
156 watching -
5:31
WhaddoYouMeme
1 day ago $2.54 earned$8,000/hr Dating Coach Loses Everything (Sadia Kahn)
9.21K6 -
LIVE
Ouhel
3 hours agoSunday | CoD 4 | CAMPAIGN PLAYTHROUGH | Nostalgia Kick
56 watching -
13:14
DEADBUGsays
1 day agoThe Murder of Veronica Kaye | Cold#11
5.81K4 -
14:53
Adam Does Movies
18 hours ago $0.92 earnedIs There Any Saving Jurassic World?
5.82K2 -
1:28:30
Sports Wars
4 hours agoNFL Week 1 MADNESS, Phillies Karen Goes VIRAL, Angel Reese Suspended As WNBA Is DEAD
19K3