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"];
}
-
1:22:02
The Quartering
2 hours agoTrump BEATS NYC Felony Charges, New Woke Car Ads, WW3 Updates & More
31.4K31 -
10:03
Colion Noir
3 hours agoKimber's First "True" Double Stack 1911 Isn't Just A Gun It's A Statement
1.63K8 -
1:46:28
vivafrei
6 hours agoKeir Starmer Goes Full Tyrant! Canada Goes Full Gestapo! Trump Picks & MORE! Viva Frei Live
48K19 -
LIVE
Akademiks
4 hours agoDiddy Last Stance! Bail Hearing Live! Lil Durk Case update! Young Thug not getting back his SH*T?
4,946 watching -
LIVE
ThatWhiteFish (Gaming)
2 hours ago $0.94 earnedNew to the Franchise! Can we survive? Do you have rations?
593 watching -
1:10:50
The New American
2 hours agoIs The Deep State Trying to Trigger WW3 Before Trump Takes Office? | The New American Daily
2.89K6 -
51:36
PMG
14 hours ago $1.81 earned"Hannah Faulkner and Sophia Lorey | FIRST AMENDMENT VIOLATED"
11K4 -
LIVE
Flexarot
2 hours agoGetting The Bansho Fan & Crane Level Capped! (Dragon Ball Online Galaxy)
173 watching -
1:17:57
Russell Brand
4 hours agoLara Logan EXPOSES the Media's Hidden Agendas & Power Plays – SF499
109K181 -
LIVE
checkmate7_7
8 hours ago $2.71 earnedWELCOME :] | !GUILDED
242 watching